summaryrefslogtreecommitdiff
path: root/pod/perlthrtut.pod
diff options
context:
space:
mode:
authorAndy Lester <andy@petdance.com>2005-06-02 11:19:54 -0500
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-06-03 08:04:25 +0000
commitb432a67249666bce4aa3385263660dc667d150d7 (patch)
treed7fccc07dbacb727f1e2d96499970be0b3682421 /pod/perlthrtut.pod
parent3a205795a9fa8c21e484e9a8efe6e9257c24bd1e (diff)
downloadperl-b432a67249666bce4aa3385263660dc667d150d7.tar.gz
Quotes in pod/*.pod
Message-ID: <20050602211954.GA22107@petdance.com> p4raw-id: //depot/perl@24686
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 8e4e4f6063..8e19411aeb 100644
--- a/pod/perlthrtut.pod
+++ b/pod/perlthrtut.pod
@@ -52,8 +52,8 @@ different models for different pieces of your program.
=head2 Boss/Worker
-The boss/worker model usually has one `boss' thread and one or more
-`worker' threads. The boss thread gathers or generates tasks that need
+The boss/worker model usually has one "boss" thread and one or more
+"worker" threads. The boss thread gathers or generates tasks that need
to be done, then parcels those tasks out to the appropriate worker
thread.