diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2002-06-04 20:30:00 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2002-06-04 20:30:00 +0000 |
commit | f3a23afb10efe30e31d9e9074bc48f765bf19a29 (patch) | |
tree | 9618552941e13fb8702f64f1a559cf5ef5779eb1 /pod/perlfunc.pod | |
parent | 7f9c46c2e27d6ddeeb97c57f8d12c650dafc9778 (diff) | |
download | perl-f3a23afb10efe30e31d9e9074bc48f765bf19a29.tar.gz |
perlfunc/lock() nits by Philip Newton and Johan Vromans.
p4raw-id: //depot/perl@16985
Diffstat (limited to 'pod/perlfunc.pod')
-rw-r--r-- | pod/perlfunc.pod | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index 49fa800467..7d3bc1f72d 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -2473,10 +2473,10 @@ This function places an advisory lock on a variable, subroutine, or referenced object contained in I<THING> until the lock goes out of scope. -lock() is a "weak keyword" : that means that if you've defined a -function by this name, this function will be called instead. -(However, if you've said C<use Thread>, lock() is always a keyword.) -See L<Thread>. +lock() is a "weak keyword" : this means that if you've defined a function +by this name, (before any calls to it), that function will be called +instead. (However, if you've said C<use Thread>, lock() is always a +keyword.) See L<Thread>. =item log EXPR |