diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-10-15 10:20:16 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-10-15 10:20:16 +0000 |
commit | 6cbbc06272884293d5b49863f65805a188482c82 (patch) | |
tree | 0c395dc9b403813f946f584a3dff6d2b33a22394 /ext | |
parent | bffc3d176498c580e8c7f5c238edf3c2945b99be (diff) | |
download | perl-6cbbc06272884293d5b49863f65805a188482c82.tar.gz |
Doc nit to Data::Dumper, suggested by Peter Kay.
p4raw-id: //depot/perl@23369
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Data/Dumper/Dumper.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/Data/Dumper/Dumper.pm b/ext/Data/Dumper/Dumper.pm index 763a41f1cd..e206671d7e 100644 --- a/ext/Data/Dumper/Dumper.pm +++ b/ext/Data/Dumper/Dumper.pm @@ -9,7 +9,7 @@ package Data::Dumper; -$VERSION = '2.121_01'; +$VERSION = '2.121_02'; #$| = 1; @@ -689,7 +689,8 @@ variable is output in a single Perl statement. Handles self-referential structures correctly. The return value can be C<eval>ed to get back an identical copy of the -original reference structure. +original reference structure (although you might need to turn off strictures +to eval it). Any references that are the same as one of those passed in will be named C<$VAR>I<n> (where I<n> is a numeric suffix), and other duplicate references |