summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorShirakata Kentaro <argrath@ub32.org>2013-03-12 13:16:14 -0600
committerKarl Williamson <public@khwilliamson.com>2013-03-12 13:20:52 -0600
commit46391258eca955edb5120d04f4c8fc6a1b087124 (patch)
tree228777ed19ea1b7351ee853347c1d7ac151edfea /pod
parent3560ee4d3c79ef65f497345d4e73a60d75b092b6 (diff)
downloadperl-46391258eca955edb5120d04f4c8fc6a1b087124.tar.gz
perlsyn.pod: Nit
Diffstat (limited to 'pod')
-rw-r--r--pod/perlsyn.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlsyn.pod b/pod/perlsyn.pod
index 0d8fd0d0dc..aecc135703 100644
--- a/pod/perlsyn.pod
+++ b/pod/perlsyn.pod
@@ -954,7 +954,7 @@ A smart match that uses an explicit C<~~> operator, such as C<EXPR ~~ EXPR>.
=item 4.
-A boolean comparison operator such as C<$_ E<lt> 10> or C<$x eq "abc"> The
+A boolean comparison operator such as C<$_ E<lt> 10> or C<$x eq "abc">. The
relational operators that this applies to are the six numeric comparisons
(C<< < >>, C<< > >>, C<< <= >>, C<< >= >>, C<< == >>, and C<< != >>), and
the six string comparisons (C<lt>, C<gt>, C<le>, C<ge>, C<eq>, and C<ne>).