perlfunc.pod
Piotr Fusik [Sat, 9 Jul 2005 16:21:05 +0000 (18:21 +0200)]
From: "Piotr Fusik" <pfusik@op.pl>
Message-ID: <01de01c58491$f3182f60$a6d24dd5@piec>

p4raw-id: //depot/perl@25112

pod/perlfunc.pod

index 41d2cc8..0235c3e 100644 (file)
@@ -603,6 +603,8 @@ previous time C<caller> was called.
 
 =item chdir EXPR
 
+=item chdir
+
 Changes the working directory to EXPR, if possible. If EXPR is omitted,
 changes to the directory specified by C<$ENV{HOME}>, if set; if not,
 changes to the directory specified by C<$ENV{LOGDIR}>. (Under VMS, the
@@ -1378,6 +1380,8 @@ there was an error.
 
 =item eval BLOCK
 
+=item eval
+
 In the first form, the return value of EXPR is parsed and executed as if it
 were a little Perl program.  The value of the expression (which is itself
 determined within scalar context) is first parsed, and if there weren't any
@@ -1626,6 +1630,8 @@ to exists() is an error.
 
 =item exit EXPR
 
+=item exit
+
 Evaluates EXPR and exits immediately with that value.    Example:
 
     $ans = <STDIN>;
@@ -2149,6 +2155,8 @@ C<File::Glob> extension.  See L<File::Glob> for details.
 
 =item gmtime EXPR
 
+=item gmtime
+
 Converts a time as returned by the time function to an 8-element list
 with the time localized for the standard Greenwich time zone.
 Typically used as follows:
@@ -2285,7 +2293,7 @@ integer overflow trigger a warning.  Leading whitespace is not stripped,
 unlike oct(). To present something as hex, look into L</printf>,
 L</sprintf>, or L</unpack>.
 
-=item import
+=item import LIST
 
 There is no builtin C<import> function.  It is just an ordinary
 method (subroutine) defined (or inherited) by modules that wish to export