summaryrefslogtreecommitdiff
path: root/pod/perldiag.pod
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-02-14 14:58:31 -0800
committerFather Chrysostomos <sprout@cpan.org>2011-02-14 16:19:08 -0800
commit5a7abfcc8928af68bc5a842da300886aa6b01c11 (patch)
tree2ba3e747be6de873ea25ed52391ca0fc61f35522 /pod/perldiag.pod
parent1da2564871cb0ee1e7d2280433c7521d796abfb2 (diff)
downloadperl-5a7abfcc8928af68bc5a842da300886aa6b01c11.tar.gz
perldiag: more sorting
Diffstat (limited to 'pod/perldiag.pod')
-rw-r--r--pod/perldiag.pod12
1 files changed, 6 insertions, 6 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod
index b9c5155c7c..859fa9d5ed 100644
--- a/pod/perldiag.pod
+++ b/pod/perldiag.pod
@@ -5159,6 +5159,12 @@ only C. This usually means there's a better way to do it in Perl.
generally because there's a better way to do it, and also because the
old way has bad side effects.
+=item Use of -l on filehandle %s
+
+(W io) A filehandle represents an opened file, and when you opened the file
+it already went past any symlink you are presumably trying to look for.
+The operation returned C<undef>. Use a filename instead.
+
=item Use of %s on a handle without * is deprecated
(D deprecated) You used C<tie>, C<tied> or C<untie> on a scalar but that
@@ -5171,12 +5177,6 @@ there is currently no way to tie the scalar itself when it holds
a typeglob, and no way to untie a scalar that has had a typeglob
assigned to it.
-=item Use of -l on filehandle %s
-
-(W io) A filehandle represents an opened file, and when you opened the file
-it already went past any symlink you are presumably trying to look for.
-The operation returned C<undef>. Use a filename instead.
-
=item Use of "package" with no arguments is deprecated
(D deprecated) You used the C<package> keyword without specifying a package