diff options
author | Abhijit Menon-Sen <ams@wiw.org> | 2001-09-22 15:07:50 +0000 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2001-09-22 15:07:50 +0000 |
commit | 32b0a12ef13782071bf034235b06ac707dd77514 (patch) | |
tree | a2621aee999d293708c9f1c7fd5c0c7185096376 | |
parent | d3f32e6ab32c1df6a2b6d4e3e8ca3a26f7627b52 (diff) | |
download | perl-32b0a12ef13782071bf034235b06ac707dd77514.tar.gz |
`@foo' should be @foo for consistency.
p4raw-id: //depot/perl@12135
-rw-r--r-- | pod/perldiag.pod | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 94c6526dd3..4dd8d40869 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -2797,9 +2797,9 @@ Perl assumes that memory is now corrupted. See L<perlfunc/ioctl>. =item Possible unintended interpolation of %s in string (W ambiguous) You said something like `@foo' in a double-quoted string -but there was no array C<@foo> in scope at the time. If you wanted -literally to say `@foo' then backslash it: `\@foo'; otherwise find out -what happened to the array you apparently lost track of. +but there was no array C<@foo> in scope at the time. If you wanted a +literal @foo, then write it as \@foo; otherwise find out what happened +to the array you apparently lost track of. =item Possible Y2K bug: %s |