summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
author卜部昌平 <shyouhei@ruby-lang.org>2020-09-29 09:57:47 +0900
committer卜部昌平 <shyouhei@ruby-lang.org>2020-09-29 09:57:47 +0900
commit06099e4ee1c7ebe0a67929e42b6498612e4a25c8 (patch)
treec1d4d59bfa551abc18b1d2e988c253200da48984 /include
parent0a3099ae4042ded1efbc76a82c95921f8e808716 (diff)
fix typo [ci skip]
Reported by Mau Magnaguagno See: https://github.com/ruby/ruby/pull/3570#discussion_r495465903
Diffstat (limited to 'include')
-rw-r--r--include/ruby/internal/stdalign.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ruby/internal/stdalign.h b/include/ruby/internal/stdalign.h
index ff90f2f0d1..b9a24d31a3 100644
--- a/include/ruby/internal/stdalign.h
+++ b/include/ruby/internal/stdalign.h
@@ -116,7 +116,7 @@ struct rbimpl_alignof {
# * querying the alignment of a type, you definitely should use that instead.
# * There are 2 known pitfalls for this fallback implementation:
# *
-# * Fitst, it is either an undefined behaviour (C) or an explicit error (C++)
+# * First, it is either an undefined behaviour (C) or an explicit error (C++)
# * to define a struct inside of `offsetof`. C compilers tend to accept such
# * things, but AFAIK C++ has no room to allow.
# *