node.c: Fix typos
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63386 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6e06d6440b
commit
59a571d14c
4
node.c
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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user