summaryrefslogtreecommitdiff
path: root/node.c
diff options
context:
space:
mode:
authorKazuki Tsujimoto <kazuki@callcc.net>2019-04-27 12:55:32 +0900
committerKazuki Tsujimoto <kazuki@callcc.net>2019-04-27 12:55:32 +0900
commitbc01f7b7211b96b258fc6586789ce9875c079a7d (patch)
tree56643ff8cddb158489e981f1821c8986a165004c /node.c
parent7fe04850d21db1e17508fb8c05fd78fc079a71c6 (diff)
Fix description of NODE_IN
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 323debc2a3..65c6837303 100644
--- a/node.c
+++ b/node.c
@@ -218,7 +218,7 @@ dump_node(VALUE buf, VALUE indent, int comment, const NODE * node)
ANN("in clause");
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_head, "in pattern");
F_NODE(nd_body, "in body");
LAST_NODE;
F_NODE(nd_next, "next in clause");