Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dwarring committed Apr 8, 2014
1 parent 6dd6ced commit fe727fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/advent2013-day22.t
Expand Up @@ -15,7 +15,7 @@ is $x + $y * $z, $x + ($y * $z), 'precedence';
is $x * $y + $z, ($x * $y) + $z, 'precedence';
is $x / $y / $z, ($x / $y) / $z, 'associativity';
$x = $y = $z;
is $x, $x, 'associativity';
is $x, $z, 'associativity';

# !prefix examples
ok 'a' !eq 'b', '!eq';
Expand Down

0 comments on commit fe727fc

Please sign in to comment.