summaryrefslogtreecommitdiff
path: root/pod/perlreftut.pod
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-03-26 01:30:25 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-03-26 01:30:25 +0000
commitd98d5fffa337682ca6cac752b32ff55e863a53a0 (patch)
tree5646cc0346e5300e94342be857a116e70c22528d /pod/perlreftut.pod
parenta7ae9550f26a080556f67048e2697d3c5a20f9f4 (diff)
downloadperl-d98d5fffa337682ca6cac752b32ff55e863a53a0.tar.gz
specify type of bracket in "Unmatched bracket" diagnostic;
prefer 'brace' or 'curly bracket' over 'curly brace' p4raw-id: //depot/perl@3170
Diffstat (limited to 'pod/perlreftut.pod')
-rw-r--r--pod/perlreftut.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlreftut.pod b/pod/perlreftut.pod
index 4526e4a2a0..09bea594ff 100644
--- a/pod/perlreftut.pod
+++ b/pod/perlreftut.pod
@@ -336,11 +336,11 @@ other references.
=item *
-In B<USE RULE 1>, you can omit the curly braces whenever the thing
+In B<USE RULE 1>, you can omit the curly brackets whenever the thing
inside them is an atomic scalar variable like C<$aref>. For example,
C<@$aref> is the same as C<@{$aref}>, and C<$$aref[1]> is the same as
C<${$aref}[1]>. If you're just starting out, you may want to adopt
-the habit of always including the curly braces.
+the habit of always including the curly brackets.
=item *