1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

fix typo [ci skip]

Reported by Mau Magnaguagno See: https://github.com/ruby/ruby/pull/3570#discussion_r495465903
This commit is contained in:
卜部昌平 2020-09-29 09:57:47 +09:00
parent 0a3099ae40
commit 06099e4ee1

View file

@ -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.
# *