summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2012-02-28 22:05:46 -0800
committerFather Chrysostomos <sprout@cpan.org>2012-02-28 22:05:46 -0800
commit9c2058001cf5b160808756ea260d7340523ca1be (patch)
treebe0ecb5da32335a4aa1d817764a2560c9f233bcf
parent4d383607e45d2ed8b044662e85b1f5e1d8825d77 (diff)
downloadperl-9c2058001cf5b160808756ea260d7340523ca1be.tar.gz
perldata: Two spaces after dots, please
-rw-r--r--pod/perldata.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perldata.pod b/pod/perldata.pod
index 4322af9013..876382d29f 100644
--- a/pod/perldata.pod
+++ b/pod/perldata.pod
@@ -417,8 +417,8 @@ Text after __DATA__ may be read via the filehandle C<PACKNAME::DATA>,
where C<PACKNAME> is the package that was current when the __DATA__
token was encountered. The filehandle is left open pointing to the
line after __DATA__. The program should C<close DATA> when it is done
-reading from it. (Leaving it open leaks filehandles if the module is
-reloaded for any reason, so it's a safer practice to close it.) For
+reading from it. (Leaving it open leaks filehandles if the module is
+reloaded for any reason, so it's a safer practice to close it.) For
compatibility with older scripts written before __DATA__ was
introduced, __END__ behaves like __DATA__ in the top level script (but
not in files loaded with C<require> or C<do>) and leaves the remaining