diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-03-26 01:30:25 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-03-26 01:30:25 +0000 |
commit | d98d5fffa337682ca6cac752b32ff55e863a53a0 (patch) | |
tree | 5646cc0346e5300e94342be857a116e70c22528d /pod/perlreftut.pod | |
parent | a7ae9550f26a080556f67048e2697d3c5a20f9f4 (diff) | |
download | perl-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.pod | 4 |
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 * |