[ID 20010619.005] two typos in pod/perlfunc.pod
Jeffrey Friedl [Tue, 19 Jun 2001 11:36:32 +0000 (04:36 -0700)]
Message-Id: <200106191836.LAA21471@ventrue.corp.yahoo.com>

p4raw-id: //depot/perl@10726

pod/perlfunc.pod

index 8912301..464d7e0 100644 (file)
@@ -2820,7 +2820,7 @@ parsimonious of file descriptors.  For example:
 or
     open(FILEHANDLE, "<&=", $fd)
 
-Note that if perl is using the standard C libaries fdopen() then on many UNIX systems,
+Note that if perl is using the standard C libraries fdopen() then on many UNIX systems,
 fdopen() is known to fail when file descriptors
 exceed a certain value, typically 255. If you need more file
 descriptors than that, consider rebuilding Perl to use the C<PerlIO>.
@@ -5510,7 +5510,7 @@ Does the opposite of a C<shift>.  Or the opposite of a C<push>,
 depending on how you look at it.  Prepends list to the front of the
 array, and returns the new number of elements in the array.
 
-    unshift(ARGV, '-e') unless $ARGV[0] =~ /^-/;
+    unshift(@ARGV, '-e') unless $ARGV[0] =~ /^-/;
 
 Note the LIST is prepended whole, not one element at a time, so the
 prepended elements stay in the same order.  Use C<reverse> to do the