From 2235695cbb8c2073098385e44d2b448d85d685a0 Mon Sep 17 00:00:00 2001 From: yui-knk Date: Mon, 20 Feb 2017 14:40:56 +0000 Subject: compile.c: Fix a typo * compile.c (compile_branch_condition): NODE_LIT is always true. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57666 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compile.c') diff --git a/compile.c b/compile.c index f7badf5a76..f246ce9eaa 100644 --- a/compile.c +++ b/compile.c @@ -2876,7 +2876,7 @@ compile_branch_condition(rb_iseq_t *iseq, LINK_ANCHOR *const ret, NODE *cond, else_label); break; } - case NODE_LIT: /* NODE_LIT is always not true */ + case NODE_LIT: /* NODE_LIT is always true */ case NODE_TRUE: case NODE_STR: case NODE_DSTR: -- cgit v1.2.3