X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pod%2Fperlreftut.pod;h=09bea594ff4e9819a98ed665f9988a5ceafb11fd;hb=d98d5fffa337682ca6cac752b32ff55e863a53a0;hp=4526e4a2a0d7c57f81fecd5aca2ebbbe1122ccda;hpb=a7ae9550f26a080556f67048e2697d3c5a20f9f4;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pod/perlreftut.pod b/pod/perlreftut.pod index 4526e4a..09bea59 100644 --- a/pod/perlreftut.pod +++ b/pod/perlreftut.pod @@ -336,11 +336,11 @@ other references. =item * -In B, you can omit the curly braces whenever the thing +In B, 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 *