summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorH.Merijn Brand <h.m.brand@xs4all.nl>2006-10-19 16:40:08 +0000
committerH.Merijn Brand <h.m.brand@xs4all.nl>2006-10-19 16:40:08 +0000
commite0c83546baf9a50ff1d18f07be80decff84542e3 (patch)
tree160c9a54716ba43201ebada580b78939a35150d0 /pod
parentf0f333bd7f26e749303d062a4fbbac3d02afbb10 (diff)
downloadperl-e0c83546baf9a50ff1d18f07be80decff84542e3.tar.gz
<tr> isnb't the same as C<tr>, and <tr> looks so stupid in man
p4raw-id: //depot/perl@29055
Diffstat (limited to 'pod')
-rw-r--r--pod/perlop.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod
index 205556cfd5..4030ed6d1e 100644
--- a/pod/perlop.pod
+++ b/pod/perlop.pod
@@ -1570,7 +1570,7 @@ its own pair of quotes, which may or may not be bracketing quotes,
e.g., C<tr[A-Z][a-z]> or C<tr(+\-*/)/ABCD/>.
Note that C<tr> does B<not> do regular expression character classes
-such as C<\d> or C<[:lower:]>. The <tr> operator is not equivalent to
+such as C<\d> or C<[:lower:]>. The C<tr> operator is not equivalent to
the tr(1) utility. If you want to map strings between lower/upper
cases, see L<perlfunc/lc> and L<perlfunc/uc>, and in general consider
using the C<s> operator if you need regular expressions.