From: Abhijit Menon-Sen <ams@wiw.org>
Date: Mon, 4 Mar 2002 08:11:20 +0000 (+0000)
Subject:    Update perldata fix as suggested by Benjamin Goldberg.
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b92795fe87d7d20aecb433c6b82c9fbf9a70017c;p=p5sagit%2Fp5-mst-13.2.git

   Update perldata fix as suggested by Benjamin Goldberg.

p4raw-id: //depot/perl@14983
---

diff --git a/pod/perldata.pod b/pod/perldata.pod
index 842f437..8e2e177 100644
--- a/pod/perldata.pod
+++ b/pod/perldata.pod
@@ -759,9 +759,9 @@ that must be passed around, as in the following example:
         # $f implicitly closed here
     }
 
-Note that if an initialized scalar variable is used instead the 
-result is different: C<my $fh='zzz'; open($h, ...)> is equivalent 
-to C<open( *{'kkk'}, ...)>. 
+Note that if an initialized scalar variable is used instead the
+result is different: C<my $fh='zzz'; open($fh, ...)> is equivalent
+to C<open( *{'zzz'}, ...)>.
 C<use strict 'refs'> forbids such practice.
 
 Another way to create anonymous filehandles is with the Symbol