summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-07 02:52:37 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-07 02:52:37 +0000
commit0f8e9a24c1172ebbc37985173ea124892e255df3 (patch)
treed7f14859ae6204f6f2822edc1b26bd505d8a4182 /parse.y
parentaff0d98a5bb4e8b6d808fa1a461991f3158690d4 (diff)
* parse.y (arg): typo fixed ("!" -> "|") in the ripper code.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14125 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index 4698c35bfb..78cae5a367 100644
--- a/parse.y
+++ b/parse.y
@@ -2053,7 +2053,7 @@ arg : lhs '=' arg
/*%%%*/
$$ = call_bin_op($1, '|', $3);
/*%
- $$ = dispatch3(binary, $1, ID2SYM('!'), $3);
+ $$ = dispatch3(binary, $1, ID2SYM('|'), $3);
%*/
}
| arg '^' arg