summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2014-12-10 04:36:56 -0800
committerFather Chrysostomos <sprout@cpan.org>2014-12-10 04:51:46 -0800
commitdacd91898fcfc21090ad48dd88483172a4bc8914 (patch)
tree2825c6858d109c14d3d38142053071fd612fe745
parent17d72df675df954f83e3ef2b679e3c01d45a412e (diff)
downloadperl-dacd91898fcfc21090ad48dd88483172a4bc8914.tar.gz
Consistent spaces after docs in perlfunc.pod
-rw-r--r--pod/perlfunc.pod5
1 files changed, 3 insertions, 2 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index 564551d023..387cccbc01 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -2298,7 +2298,7 @@ same underlying descriptor:
}
The behavior of C<fileno> on a directory handle depends on the operating
-system. On a system with dirfd(3) or similar, C<fileno> on a directory
+system. On a system with dirfd(3) or similar, C<fileno> on a directory
handle returns the underlying file descriptor associated with the
handle; on systems with no such support, it returns the undefined value,
and sets C<$!> (errno).
@@ -4376,7 +4376,8 @@ existing variable: a package variable of the same name.
This means that when C<use strict 'vars'> is in effect, C<our> lets you use
a package variable without qualifying it with the package name, but only within
-the lexical scope of the C<our> declaration. This applies immediately--even
+the lexical scope of the C<our>
+declaration. This applies immediately--even
within the same statement.
package Foo;