summaryrefslogtreecommitdiff
path: root/include/ruby/3/arithmetic/long.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ruby/3/arithmetic/long.h')
-rw-r--r--include/ruby/3/arithmetic/long.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ruby/3/arithmetic/long.h b/include/ruby/3/arithmetic/long.h
index 46ff76d63e..3263c616b0 100644
--- a/include/ruby/3/arithmetic/long.h
+++ b/include/ruby/3/arithmetic/long.h
@@ -136,7 +136,7 @@ ruby3_fix2long_by_shift(VALUE x)
RUBY3_ASSERT_OR_ASSUME(RB_FIXNUM_P(x));
/* :NOTE: VALUE can be wider than long. If right shift is arithmetic, this
- * is noticably faster than above. */
+ * is noticeably faster than above. */
const SIGNED_VALUE y = x;
const SIGNED_VALUE z = y >> 1;
const long w = RUBY3_CAST((long)z);