cvs commit: perlfaq perlfaq4.pod

[email protected] (brian d foy) 23 Nov 2005 07:46:45 -0000
Newsgroups perl.cvs.perlfaq
Message-ID <[email protected]>
cvsuser     05/11/22 23:46:45

  Modified:    .        perlfaq4.pod
  Log:
  * whitespace fix
  
  Revision  Changes    Path
  1.71      +2 -2      perlfaq/perlfaq4.pod
  
  Index: perlfaq4.pod
  ===================================================================
  RCS file: /cvs/public/perlfaq/perlfaq4.pod,v
  retrieving revision 1.70
  retrieving revision 1.71
  diff -u -r1.70 -r1.71
  --- perlfaq4.pod	27 Oct 2005 20:27:30 -0000	1.70
  +++ perlfaq4.pod	23 Nov 2005 07:46:45 -0000	1.71
  @@ -392,7 +392,7 @@
   The localtime function returns the day of the year.  Without an
   argument localtime uses the current time.
   
  -    $day_of_year = (localtime)[7];
  +	$day_of_year = (localtime)[7];
   
   The POSIX module can also format a date as the day of the year or
   week of the year.