git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63386 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
yui-knk 2018-05-10 00:23:23 +00:00
Родитель 6e06d6440b
Коммит 59a571d14c
1 изменённых файлов: 2 добавлений и 2 удалений

4
node.c
Просмотреть файл

@ -760,7 +760,7 @@ dump_node(VALUE buf, VALUE indent, int comment, const NODE * node)
case NODE_DEFN:
ANN("method definition");
ANN("format: def [nd_mid] [nd_defn]; end");
ANN("example; def foo; bar; end");
ANN("example: def foo; bar; end");
F_ID(nd_mid, "method name");
LAST_NODE;
F_NODE(nd_defn, "method definition");
@ -769,7 +769,7 @@ dump_node(VALUE buf, VALUE indent, int comment, const NODE * node)
case NODE_DEFS:
ANN("singleton method definition");
ANN("format: def [nd_recv].[nd_mid] [nd_defn]; end");
ANN("example; def obj.foo; bar; end");
ANN("example: def obj.foo; bar; end");
F_NODE(nd_recv, "receiver");
F_ID(nd_mid, "method name");
LAST_NODE;