summaryrefslogtreecommitdiff
path: root/pod/perlthrtut.pod
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-04-26 16:11:17 -0600
committerKarl Williamson <public@khwilliamson.com>2011-05-18 11:15:05 -0600
commit4bc749662f181f5a0f0fb97edf6ecf3634e32c11 (patch)
treed1d93112aa6d025efa1d14ab8a3015770ad5a2e1 /pod/perlthrtut.pod
parentd5d573bade280ba686ddd615a6da7e0ef89e68d3 (diff)
downloadperl-4bc749662f181f5a0f0fb97edf6ecf3634e32c11.tar.gz
perlthrtut: fix broken links
Diffstat (limited to 'pod/perlthrtut.pod')
-rw-r--r--pod/perlthrtut.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlthrtut.pod b/pod/perlthrtut.pod
index 30f8357748..d3136e9565 100644
--- a/pod/perlthrtut.pod
+++ b/pod/perlthrtut.pod
@@ -13,7 +13,7 @@ between threads must be explicit. The user-level interface for I<ithreads>
uses the L<threads> class.
B<NOTE>: There was another older Perl threading flavor called the 5.005 model
-that used the L<Threads> class. This old model was known to have problems, is
+that used the L<threads> class. This old model was known to have problems, is
deprecated, and was removed for release 5.10. You are
strongly encouraged to migrate any existing 5.005 threads code to the new
model as soon as possible.
@@ -1043,7 +1043,7 @@ give you the full POSIX API). For example, there is no way to
guarantee that a signal sent to a multi-threaded Perl application
will get intercepted by any particular thread. (However, a recently
added feature does provide the capability to send signals between
-threads. See L<threads/"THREAD SIGNALLING> for more details.)
+threads. See L<threads/THREAD SIGNALLING> for more details.)
=head1 Thread-Safety of System Libraries