mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
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
This commit is contained in:
parent
93254f4a41
commit
48d61170a2
1 changed files with 1 additions and 1 deletions
2
node.c
2
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;
|
||||
|
|
Loading…
Reference in a new issue