Skip to content

Commit be4a09d

Browse files
committed
lib/Thread.pm: Fix typo
1 parent ac176ae commit be4a09d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Thread.pm

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use strict;
44
use warnings;
55
no warnings 'redefine';
66

7-
our $VERSION = '3.05';
7+
our $VERSION = '3.06';
88
$VERSION = eval $VERSION;
99

1010
BEGIN {
@@ -61,7 +61,7 @@ In Perl 5.005, the thread model was that all data is implicitly shared, and
6161
shared access to data has to be explicitly synchronized. This model is called
6262
I<5005threads>.
6363
64-
In Perl 5.6, a new model was introduced in which all is was thread local and
64+
In Perl 5.6, a new model was introduced in which all data is thread local and
6565
shared access to data has to be explicitly declared. This model is called
6666
I<ithreads>, for "interpreter threads".
6767

0 commit comments

Comments
 (0)