From 48d61170a2d23ae7b0040800480e3f89254bcce8 Mon Sep 17 00:00:00 2001 From: yui-knk Date: Sun, 5 Feb 2017 14:16:52 +0000 Subject: node.c: Fix a typo * node.c (dump_node): Fix a typo of || operator example git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57540 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- node.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node.c b/node.c index 1fe47844da..83b51e6a60 100644 --- a/node.c +++ b/node.c @@ -332,7 +332,7 @@ dump_node(VALUE buf, VALUE indent, int comment, NODE *node) case NODE_OR: ANN("|| operator"); ANN("format: [nd_1st] || [nd_2nd]"); - ANN("example: foo && bar"); + ANN("example: foo || bar"); andor: F_NODE(nd_1st, "left expr"); LAST_NODE; -- cgit v1.2.3