Change 20981 by [EMAIL PROTECTED] on 2003/09/01 11:28:35
Subject: [DOC PATCH] perlfaq4.pod
Date: Mon, 1 Sep 2003 12:38:50 +0200
From: Elizabeth Mattijsen <[EMAIL PROTECTED]>
Message-Id: <[EMAIL PROTECTED]>
Affected files ...
... //depot/perl/pod/perlfaq4.pod#85 edit
Differences ...
==== //depot/perl/pod/perlfaq4.pod#85 (text) ====
Index: perl/pod/perlfaq4.pod
--- perl/pod/perlfaq4.pod#84~20813~ Thu Aug 21 21:57:12 2003
+++ perl/pod/perlfaq4.pod Mon Sep 1 04:28:35 2003
@@ -2037,8 +2037,9 @@
=head2 How do I print out or copy a recursive data structure?
The Data::Dumper module on CPAN (or the 5.005 release of Perl) is great
-for printing out data structures. The Storable module, found on CPAN,
-provides a function called C<dclone> that recursively copies its argument.
+for printing out data structures. The Storable module on CPAN (or the
+5.8 release of Perl), provides a function called C<dclone> that recursively
+copies its argument.
use Storable qw(dclone);
$r2 = dclone($r1);
End of Patch.