Fixed repeated words
authorWalt Mankowski <waltman@pobox.com>
Fri, 22 Jun 2012 02:36:00 +0000 (22:36 -0400)
committerVincent Pit <vince@profvince.com>
Fri, 22 Jun 2012 08:46:11 +0000 (10:46 +0200)
pod/perlfunc.pod
pod/perlvar.pod

index ddd301a..568a930 100644 (file)
@@ -204,9 +204,9 @@ automatically with a C<use v5.10> (or higher) declaration in the current
 scope. In Perl v5.14 and earlier, C<continue> required the C<"switch">
 feature, like the other keywords.
 
-C<evalbytes> is only available with with the C<"evalbytes"> feature (see
+C<evalbytes> is only available with the C<"evalbytes"> feature (see
 L<feature>) or if prefixed with C<CORE::>.  C<__SUB__> is only available
-with with the C<"current_sub"> feature or if prefixed with C<CORE::>. Both
+with the C<"current_sub"> feature or if prefixed with C<CORE::>. Both
 the C<"evalbytes"> and C<"current_sub"> features are enabled automatically
 with a C<use v5.16> (or higher) declaration in the current scope.
 
index c09aea5..cfa82f9 100644 (file)
@@ -196,7 +196,7 @@ would emulate POSIX semantics on Linux systems using LinuxThreads, a
 partial implementation of POSIX Threads that has since been superseded
 by the Native POSIX Thread Library (NPTL).
 
-LinuxThreads is now obsolete on Linux, and and caching C<getpid()>
+LinuxThreads is now obsolete on Linux, and caching C<getpid()>
 like this made embedding perl unnecessarily complex (since you'd have
 to manually update the value of $$), so now C<$$> and C<getppid()>
 will always return the same values as the underlying C library.