summaryrefslogtreecommitdiff
path: root/pod/perlthrtut.pod
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-05-12 04:27:16 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-05-12 04:27:16 +0000
commit48b96218279f56cd5f07553f53b95fab2f227a55 (patch)
treeb528f75d270c544f2f5382845c7edcf3de91be7c /pod/perlthrtut.pod
parentf3278b06ba5642b0217ce1d2ec161817bd5c7100 (diff)
downloadperl-48b96218279f56cd5f07553f53b95fab2f227a55.tar.gz
There's no rest for the wicked misspellers.
p4raw-id: //depot/perl@16553
Diffstat (limited to 'pod/perlthrtut.pod')
-rw-r--r--pod/perlthrtut.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlthrtut.pod b/pod/perlthrtut.pod
index 455be15c59..8bcbf24913 100644
--- a/pod/perlthrtut.pod
+++ b/pod/perlthrtut.pod
@@ -652,7 +652,7 @@ order. If, for example, you lock variables $a, $b, and $c, always lock
$a before $b, and $b before $c. It's also best to hold on to locks for
as short a period of time to minimize the risks of deadlock.
-The other syncronization primitives described below can suffer from
+The other synchronization primitives described below can suffer from
similar problems.
=head2 Queues: Passing Data Around