Skip to content

Commit dda9d6a

Browse files
committed
perlop: Fix grammatical nits
1 parent ed250f0 commit dda9d6a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pod/perlop.pod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ as well as L</"I/O Operators">.
223223
X<arrow> X<dereference> X<< -> >>
224224

225225
"C<< -> >>" is an infix dereference operator, just as it is in C
226-
and C++. If the right side is either a C<[...]>, C<{...}>, or a
226+
and C++. If the right side is one of a C<[...]>, C<{...}>, or a
227227
C<(...)> subscript, then the left side must be either a hard or
228228
symbolic reference to an array, a hash, or a subroutine respectively.
229229
(Or technically speaking, a location capable of holding a hard
@@ -482,7 +482,7 @@ in logical shift zero bits come in from the left.
482482
Either way, the implementation isn't going to generate results larger
483483
than the size of the integer type Perl was built with (32 bits or 64 bits).
484484

485-
Shifting by negative number of bits means the reverse shift: left
485+
Shifting by a negative number of bits means the reverse shift: left
486486
shift becomes right shift, right shift becomes left shift. This is
487487
unlike in C, where negative shift is undefined.
488488

@@ -542,7 +542,7 @@ X<isa operator>
542542

543543
Binary C<isa> evaluates to true when the left argument is an object instance of
544544
the class (or a subclass derived from that class) given by the right argument.
545-
If the left argument is not defined, not a blessed object instance, nor does
545+
If the left argument is not defined, not a blessed object instance, and does
546546
not derive from the class given by the right argument, the operator evaluates
547547
as false. The right argument may give the class either as a bareword or a
548548
scalar expression that yields a string class name:

0 commit comments

Comments
 (0)