@@ -18,7 +18,7 @@ means that Perl has two versions of some operators, one for numeric
18
18
and one for string comparison. For example S<C<$x == $y>> compares
19
19
two numbers for equality, and S<C<$x eq $y>> compares two strings.
20
20
21
- There are a few exceptions though: C<x> can be either string
21
+ There are a few exceptions though: The operator C<x> can be either string
22
22
repetition or list repetition, depending on the type of the left
23
23
operand, and C<&>, C<|>, C<^> and C<~> can be either string or numeric bit
24
24
operations.
@@ -216,7 +216,7 @@ Also parsed as terms are the S<C<do {}>> and S<C<eval {}>> constructs, as
216
216
well as subroutine and method calls, and the anonymous
217
217
constructors C<[]> and C<{}>.
218
218
219
- See also L</Quote and Quote-like Operators> toward the end of this section ,
219
+ See also L</Quote and Quote-like Operators> below ,
220
220
as well as L</"I/O Operators">.
221
221
222
222
=head2 The Arrow Operator
@@ -1038,7 +1038,7 @@ X<//> X<operator, logical, defined-or>
1038
1038
Binary C<"||"> performs a short-circuit logical OR operation. That is,
1039
1039
if the left operand is true, the right operand is not even evaluated.
1040
1040
Scalar or list context propagates down to the right operand if it
1041
- is evaluated.
1041
+ does get evaluated.
1042
1042
1043
1043
As an alternative to C<||> when used for control flow, Perl provides the
1044
1044
C<or> operator (L<see below|/Logical or and Exclusive Or>).
0 commit comments