Skip to content

Commit 6f7e7de

Browse files
committed
perlop: Add some C< >.
1 parent c2b2621 commit 6f7e7de

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
@@ -664,15 +664,15 @@ Binary C<"cmp"> returns -1, 0, or 1 depending on whether the left
664664
argument is stringwise less than, equal to, or greater than the right
665665
argument.
666666

667-
Here we can see the difference between <=> and cmp,
667+
Here we can see the difference between C<< <=> >> and C<cmp>,
668668

669669
print 10 <=> 2 #prints 1
670670
print 10 cmp 2 #prints -1
671671

672672
X<cmp>
673673
(likewise between the relational operators that were described in the
674-
L<previous section|/Relational Operators>: gt and >, lt and
675-
<, etc.)
674+
L<previous section|/Relational Operators>: C<gt> and C<< > >>, C<lt> and
675+
C<< < >>, I<etc>.)
676676

677677
Binary C<"~~"> does a smartmatch between its arguments. Smart matching
678678
is described in the next section.

0 commit comments

Comments
 (0)