summaryrefslogtreecommitdiff
path: root/include/ruby/internal/attr/noexcept.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ruby/internal/attr/noexcept.h')
-rw-r--r--include/ruby/internal/attr/noexcept.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ruby/internal/attr/noexcept.h b/include/ruby/internal/attr/noexcept.h
index ea3001df2a..7c3f92f1e7 100644
--- a/include/ruby/internal/attr/noexcept.h
+++ b/include/ruby/internal/attr/noexcept.h
@@ -54,7 +54,7 @@
* get smarter and smarter. Today they can infer if it actually throws
* or not without any annotations by humans (correct me if I'm wrong).
*
- * - When an inline function attributed `noexcepr` actually _does_ throw an
+ * - When an inline function attributed `noexcept` actually _does_ throw an
* exception: they have to call `std::terminate` then (C++ standard
* mandates so). This means exception handling routines are actually
* enforced, not omitted. This doesn't impact runtime performance (The