summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorE.Choroba <choroba@cpan.org>2019-07-18 15:02:19 +0200
committerJames E Keenan <jkeenan@cpan.org>2019-07-21 09:31:09 -0400
commit6b62d97b14ca2894417d0297a435c63e056e31fe (patch)
treeef8c5f708822b459d725ed38c6458aa5e81cacd8 /lib
parentbc2d66694a8e3c3ab6f06076bb672776d0bfde33 (diff)
downloadperl-6b62d97b14ca2894417d0297a435c63e056e31fe.tar.gz
Fix pod formatting
&gt; is an HTML entity, not pod. Committer: increment $VERSION For: RT # 134300
Diffstat (limited to 'lib')
-rw-r--r--lib/Thread.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Thread.pm b/lib/Thread.pm
index dbe0719bf5..70bcac3898 100644
--- a/lib/Thread.pm
+++ b/lib/Thread.pm
@@ -4,7 +4,7 @@ use strict;
use warnings;
no warnings 'redefine';
-our $VERSION = '3.04';
+our $VERSION = '3.05';
$VERSION = eval $VERSION;
BEGIN {
@@ -117,7 +117,7 @@ C<new> starts a new thread of execution in the referenced subroutine. The
optional list is passed as parameters to the subroutine. Execution
continues in both the subroutine and the code after the C<new> call.
-C<Thread-&gt;new> returns a thread object representing the newly created
+C<< Thread->new >> returns a thread object representing the newly created
thread.
=item lock VARIABLE
@@ -148,7 +148,7 @@ C<lock(\$a)> is equivalent to C<lock($a)>, while C<lock(\\$a)> is not.
C<async> creates a thread to execute the block immediately following
it. This block is treated as an anonymous sub, and so must have a
-semi-colon after the closing brace. Like C<Thread-&gt;new>, C<async>
+semi-colon after the closing brace. Like C<< Thread->new >>, C<async>
returns a thread object.
=item Thread->self