Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[variables] fix length of a line
  • Loading branch information
felher committed Aug 29, 2012
1 parent 38b1209 commit 81784c9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/variables.pod
Expand Up @@ -39,10 +39,10 @@ Item assignment places the value from the right-hand side into the variable
List assignment leaves the choice of what to do to the variable on the left.
For example L<Array> variables (C<@> sigil) empty themselves on list assignment, and then
put all the values from the right-hand side into themselves. Contrary to item
assignment, it means that the type of the variable on the left always stays
C<Array>, regardless of the type of the right-hand side.
For example L<Array> variables (C<@> sigil) empty themselves on list assignment,
and then put all the values from the right-hand side into themselves. Contrary
to item assignment, it means that the type of the variable on the left always
stays C<Array>, regardless of the type of the right-hand side.
Note that the item assignment has tighter precedence than list assigment, and
also tighter than the comma. See L<operators> for more details.
Expand Down

0 comments on commit 81784c9

Please sign in to comment.