Skip to content

Commit

Permalink
perlop: Make correction
Browse files Browse the repository at this point in the history
This recipe has the same result under both EBCDIC and ASCII
  • Loading branch information
khwilliamson committed May 7, 2015
1 parent 6e31cdd commit 9f1b817
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pod/perlop.pod
Original file line number Diff line number Diff line change
Expand Up @@ -3232,7 +3232,7 @@ strings:
$foo = '150' | 105; # yields 255
$foo = 150 | '105'; # yields 255
$foo = '150' | '105'; # yields 255
$foo = 150 |. 105; # yields string '155' (under ASCII)
$foo = 150 |. 105; # yields string '155'
$foo = '150' |. 105; # yields string '155'
$foo = 150 |.'105'; # yields string '155'
$foo = '150' |.'105'; # yields string '155'
Expand Down

0 comments on commit 9f1b817

Please sign in to comment.