diff options
author | Artur Bergman <sky@nanisky.com> | 2001-06-19 00:06:37 +0200 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-18 22:34:06 +0000 |
commit | f2fc0a4050ac9234cb4e9b7764656b322cb30135 (patch) | |
tree | 416fc1744eb400f0a3ae127a2b6684e4f66138e6 /pod/perlsub.pod | |
parent | f970f0fc9b8808d7f48ea934d252da2e6103af68 (diff) | |
download | perl-f2fc0a4050ac9234cb4e9b7764656b322cb30135.tar.gz |
Documentation changes for CLONE
Message-ID: <B7542BEC.1719%artur@contiller.se>
p4raw-id: //depot/perl@10694
Diffstat (limited to 'pod/perlsub.pod')
-rw-r--r-- | pod/perlsub.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlsub.pod b/pod/perlsub.pod index b440cd1d93..ea7546e95c 100644 --- a/pod/perlsub.pod +++ b/pod/perlsub.pod @@ -207,8 +207,8 @@ core, as are modules whose names are in all lower case. A function in all capitals is a loosely-held convention meaning it will be called indirectly by the run-time system itself, usually due to a triggered event. Functions that do special, pre-defined -things include C<BEGIN>, C<CHECK>, C<INIT>, C<END>, C<AUTOLOAD>, and -C<DESTROY>--plus all functions mentioned in L<perltie>. +things include C<BEGIN>, C<CHECK>, C<INIT>, C<END>, C<AUTOLOAD>, +C<CLONE> and C<DESTROY>--plus all functions mentioned in L<perltie>. =head2 Private Variables via my() |