[前][次][番号順一覧][スレッド一覧]

ruby-changes:55384

From: yui-knk <ko1@a...>
Date: Wed, 17 Apr 2019 16:15:12 +0900 (JST)
Subject: [ruby-changes:55384] yui-knk:r67592 (trunk): Fix the format of NODE_IN node

yui-knk	2019-04-17 16:15:08 +0900 (Wed, 17 Apr 2019)

  New Revision: 67592

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=67592

  Log:
    Fix the format of NODE_IN node

  Modified files:
    trunk/node.c
Index: node.c
===================================================================
--- node.c	(revision 67591)
+++ node.c	(revision 67592)
@@ -216,7 +216,7 @@ dump_node(VALUE buf, VALUE indent, int c https://github.com/ruby/ruby/blob/trunk/node.c#L216
 
       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");

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]