summaryrefslogtreecommitdiff
path: root/node.c
diff options
context:
space:
mode:
authoryui-knk <yui-knk@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-04-17 07:15:08 +0000
committeryui-knk <yui-knk@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-04-17 07:15:08 +0000
commitbd698312fa96a5a5232eb1f1943bf7eac997aa46 (patch)
tree8dd1d7f2e5dc400197eecf089c08f8d94cd1b16b /node.c
parent5141398ff060bdaa437418cc35adcbfe0f886cb0 (diff)
Fix the format of NODE_IN node
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67592 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'node.c')
-rw-r--r--node.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/node.c b/node.c
index 521ddf690a..eb88efc61a 100644
--- a/node.c
+++ b/node.c
@@ -216,7 +216,7 @@ dump_node(VALUE buf, VALUE indent, int comment, const NODE * node)
case NODE_IN:
ANN("in clause");
- ANN("format: in [nd_head]; [nd_body]; (when or else) [nd_next]");
+ ANN("format: in [nd_head]; [nd_body]; (in or else) [nd_next]");
ANN("example: case x; in 1; foo; in 2; bar; else baz; end");
F_NODE(nd_head, "in value");
F_NODE(nd_body, "in body");