Skip to content

Commit

Permalink
Tidied formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
chromatic committed Sep 15, 2010
1 parent 0eed3ca commit 93c8957
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions sections/operator_characteristics.pod
Expand Up @@ -21,9 +21,8 @@ X<precedence>
The I<precedence> of an operator helps determine when Perl should evaluate it
in an expression. Evaluation order proceeds from highest to lowest precedence.
For example, because the precedence of multiplication is higher than the
precedence of addition, C<7 + 7
* 10> evaluates to C<77>, not C<140>.
You may force the evaluation of some operators before others by grouping their
precedence of addition, C<7 + 7 * 10> evaluates to C<77>, not C<140>. You may
force the evaluation of some operators before others by grouping their
subexpressions in parentheses; C<(7 + 7) * 10> I<does> evaluate to C<140>, as
the addition operation becomes a single unit which must evaluate fully before
multiplication can occur.
Expand Down
2 changes: 1 addition & 1 deletion sections/regular_expressions.pod
Expand Up @@ -345,7 +345,7 @@ Of course, if your list of potential matches were anything other than a list of
words, this metacharacter could cause false positives, as it also matches
punctuation characters, whitespace, numbers, and many other characters besides
word characters. The C<\w> metacharacter represents all alphanumeric
characters (in a Unicode sense -- L<unicode>) and the underscore:
characters (in a Unicode sense--L<unicode>) and the underscore:

=begin programlisting

Expand Down

0 comments on commit 93c8957

Please sign in to comment.