In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/bca52ca1d767654670429383dea23f9af89ab5ea?hp=28502098d789b49672c607a23fd42af03fab5a04>
- Log ----------------------------------------------------------------- commit bca52ca1d767654670429383dea23f9af89ab5ea Author: Florian Ragwitz <[email protected]> Date: Mon Nov 29 19:37:25 2010 +0100 Fix a typo in perlmod ----------------------------------------------------------------------- Summary of changes: pod/perlmod.pod | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pod/perlmod.pod b/pod/perlmod.pod index 9065586..7c5358f 100644 --- a/pod/perlmod.pod +++ b/pod/perlmod.pod @@ -587,7 +587,7 @@ For example: if in the parent there are two references to a single blessed hash, then in the child there will be two references to a single undefined scalar value instead. This provides a simple mechanism for making a module threadsafe; just add -C<sub CLONE_SKIP { 1 }> at the top of the class, and C<DESTROY()> will be +C<sub CLONE_SKIP { 1 }> at the top of the class, and C<DESTROY()> will now only be called once per object. Of course, if the child thread needs to make use of the objects, then a more sophisticated approach is needed. -- Perl5 Master Repository
