From 30930ba0503ce8d22df79082d2b6fcebe8312301 Mon Sep 17 00:00:00 2001 From: mame Date: Fri, 15 Dec 2017 05:55:08 +0000 Subject: [PATCH] node.c: fix typos git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61270 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- node.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/node.c b/node.c index 95817643af..e3cf8f0d9a 100644 --- a/node.c +++ b/node.c @@ -227,11 +227,11 @@ dump_node(VALUE buf, VALUE indent, int comment, NODE *node) return; case NODE_WHEN: - ANN("if statement"); + ANN("when clause"); ANN("format: when [nd_head]; [nd_body]; (when or else) [nd_next]"); ANN("example: case x; when 1; foo; when 2; bar; else baz; end"); F_NODE(nd_head, "when value"); - F_NODE(nd_body, "when clause"); + F_NODE(nd_body, "when body"); LAST_NODE; F_NODE(nd_next, "next when clause"); return; @@ -271,7 +271,7 @@ dump_node(VALUE buf, VALUE indent, int comment, NODE *node) return; case NODE_BREAK: - ANN("for statement"); + ANN("break statement"); ANN("format: break [nd_stts]"); ANN("example: break 1"); goto jump;