From: Elizabeth Mattijsen Date: Mon, 30 Jul 2007 11:19:01 +0000 (+0200) Subject: Example in perlthrtut.pod doesn't work X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=47e06d6888c8ce486ae115280c95b30a35e2db76;p=p5sagit%2Fp5-mst-13.2.git Example in perlthrtut.pod doesn't work Message-Id: p4raw-id: //depot/perl@31667 --- diff --git a/pod/perlothrtut.pod b/pod/perlothrtut.pod index 12811dc..3253097 100644 --- a/pod/perlothrtut.pod +++ b/pod/perlothrtut.pod @@ -604,7 +604,6 @@ this: $DataQueue->enqueue(12); $DataQueue->enqueue("A", "B", "C"); - $DataQueue->enqueue(\$thr); sleep 10; $DataQueue->enqueue(undef); diff --git a/pod/perlthrtut.pod b/pod/perlthrtut.pod index 65992c7..be49545 100644 --- a/pod/perlthrtut.pod +++ b/pod/perlthrtut.pod @@ -596,7 +596,6 @@ this: $DataQueue->enqueue(12); $DataQueue->enqueue("A", "B", "C"); - $DataQueue->enqueue(\$thr); sleep(10); $DataQueue->enqueue(undef); $thr->join();