summaryrefslogtreecommitdiff
path: root/pod/perlthrtut.pod
diff options
context:
space:
mode:
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