Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Minor whitespace improvement
  • Loading branch information
Paul Cochrane committed May 6, 2015
1 parent be215ad commit 539edad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion categories/cookbook/01strings/01-03exchanging-values.pl
Expand Up @@ -10,7 +10,7 @@
=end pod

my ($x, $y) = (3,2);
my ($x, $y) = (3, 2);
($x, $y) = ($y, $x);
# XXX Binding (:=) is more efficient, because it doesn't copy the values.
# XXX Compile-time binding (::=) could not be used here, as the cells
Expand Down

0 comments on commit 539edad

Please sign in to comment.