diff options
author | Andreas König <a.koenig@mind.de> | 2002-11-25 11:21:08 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2002-11-26 20:42:25 +0000 |
commit | ad0f383a28b730182ea06492027f82167ce7032b (patch) | |
tree | e3dbe1776784d921b6239de01c7162a3808faf28 /pod/perlop.pod | |
parent | 78fc38e12ada7f29fe773fd35880f8076a010cc9 (diff) | |
download | perl-ad0f383a28b730182ea06492027f82167ce7032b.tar.gz |
2 Pod errors in perlop.pod
Message-ID: <m31y5admyj.fsf@k242.linux.bogus>
Plus a few similar POD fixes
p4raw-id: //depot/perl@18184
Diffstat (limited to 'pod/perlop.pod')
-rw-r--r-- | pod/perlop.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod index 9bce6c26cc..f286c60363 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -773,8 +773,8 @@ you may be burned some day. For constructs that do interpolate, variables beginning with "C<$>" or "C<@>" are interpolated. Subscripted variables such as C<$a[3]> or -C<$href->{key}[0]> are also interpolated, as are array and hash slices. -But method calls such as C<$obj->meth> are not. +C<< $href->{key}[0] >> are also interpolated, as are array and hash slices. +But method calls such as C<< $obj->meth >> are not. Interpolating an array or slice interpolates the elements in order, separated by the value of C<$">, so is equivalent to interpolating |