From 3e99d31d62d720ab458ae3bf1e462e59d625694c Mon Sep 17 00:00:00 2001 From: yui-knk Date: Thu, 10 May 2018 00:23:23 +0000 Subject: node.c: Fix typos git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63386 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- node.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'node.c') diff --git a/node.c b/node.c index d41b330b5c..d025eccf62 100644 --- a/node.c +++ b/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; -- cgit v1.2.3