summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorElizabeth Mattijsen <liz@dijkmat.nl>2007-07-30 13:19:01 +0200
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-07-30 09:23:55 +0000
commit47e06d6888c8ce486ae115280c95b30a35e2db76 (patch)
treec8435fbc56b5725681a6f20b44d70329d7b05fc1 /pod
parent9accb295df24fb8926edf2982153101207266a00 (diff)
downloadperl-47e06d6888c8ce486ae115280c95b30a35e2db76.tar.gz
Example in perlthrtut.pod doesn't work
Message-Id: <p06230913c2d35ab76254@[10.0.1.200]> p4raw-id: //depot/perl@31667
Diffstat (limited to 'pod')
-rw-r--r--pod/perlothrtut.pod1
-rw-r--r--pod/perlthrtut.pod1
2 files changed, 0 insertions, 2 deletions
diff --git a/pod/perlothrtut.pod b/pod/perlothrtut.pod
index 12811dc4db..3253097ec0 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 65992c70fe..be4954529f 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();