summaryrefslogtreecommitdiff
path: root/lib/Thread.pm
diff options
context:
space:
mode:
authorJames E Keenan <jkeenan@cpan.org>2013-05-25 15:23:54 +0200
committerJames E Keenan <jkeenan@cpan.org>2013-05-25 15:23:54 +0200
commit191050aabed3fc5bae80e1ecea4ad2af8a96bfc7 (patch)
tree0e72673d2e255fa61d137d9d456260569e39f11f /lib/Thread.pm
parent0e56abba1c48d143424bd7b468b4edea12d47eaf (diff)
downloadperl-191050aabed3fc5bae80e1ecea4ad2af8a96bfc7.tar.gz
Correction recommended by Brad Gilbert++.
Bump $VERSION. For: RT #118085
Diffstat (limited to 'lib/Thread.pm')
-rw-r--r--lib/Thread.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Thread.pm b/lib/Thread.pm
index 395b7ebc71..dbe0719bf5 100644
--- a/lib/Thread.pm
+++ b/lib/Thread.pm
@@ -4,7 +4,7 @@ use strict;
use warnings;
no warnings 'redefine';
-our $VERSION = '3.03';
+our $VERSION = '3.04';
$VERSION = eval $VERSION;
BEGIN {
@@ -168,7 +168,7 @@ does a C<cond_signal> or C<cond_broadcast> for that same locked
variable. The variable that C<cond_wait> blocked on is relocked
after the C<cond_wait> is satisfied. If there are multiple threads
C<cond_wait>ing on the same variable, all but one will reblock waiting
-to require the lock on the variable. (So if you're only using
+to re-acquire the lock on the variable. (So if you're only using
C<cond_wait> for synchronization, give up the lock as soon as
possible.)