Skip to content

Commit 5e8b744

Browse files
eightbitraptorbyroot
authored andcommitted
RUBY_T_{TRUE,FALSE} comments were reversed
[ci skip]
1 parent cbc045a commit 5e8b744

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/ruby/internal/value_type.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ ruby_value_type {
130130
RUBY_T_RATIONAL = 0x0f, /**< @see struct ::RRational */
131131

132132
RUBY_T_NIL = 0x11, /**< @see ::RUBY_Qnil */
133-
RUBY_T_TRUE = 0x12, /**< @see ::RUBY_Qfalse */
134-
RUBY_T_FALSE = 0x13, /**< @see ::RUBY_Qtrue */
133+
RUBY_T_TRUE = 0x12, /**< @see ::RUBY_Qtrue */
134+
RUBY_T_FALSE = 0x13, /**< @see ::RUBY_Qfalse */
135135
RUBY_T_SYMBOL = 0x14, /**< @see struct ::RSymbol */
136136
RUBY_T_FIXNUM = 0x15, /**< Integers formerly known as Fixnums. */
137137
RUBY_T_UNDEF = 0x16, /**< @see ::RUBY_Qundef */

0 commit comments

Comments
 (0)