From: Moritz Lenz Date: Tue, 26 Aug 2008 11:23:00 +0000 (+0000) Subject: clear docs on exists wrt autovivification X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=95731d22654e3bfea37fa18440748a4fcd003948;p=p5sagit%2Fp5-mst-13.2.git clear docs on exists wrt autovivification Date: August 26, 2008 11:23 p4raw-id: //depot/perl@34239 --- diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index e5518af..2f9a85c 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -1735,8 +1735,7 @@ X X Given an expression that specifies a hash element or array element, returns true if the specified element in the hash or array has ever -been initialized, even if the corresponding value is undefined. The -element is not autovivified if it doesn't exist. +been initialized, even if the corresponding value is undefined. print "Exists\n" if exists $hash{$key}; print "Defined\n" if defined $hash{$key};