cvs commit: perlfaq perlfaq4.pod

[email protected] (Robert Spier) 23 Feb 2003 20:25:09 -0000
Newsgroups perl.cvs.perlfaq
Message-ID <[email protected]>
cvsuser     03/02/23 12:25:09

  Modified:    .        perlfaq4.pod
  Log:
  Typo, caught by  Tomi Parviainen <[email protected]>
  
  Revision  Changes    Path
  1.43      +2 -2      perlfaq/perlfaq4.pod
  
  Index: perlfaq4.pod
  ===================================================================
  RCS file: /cvs/public/perlfaq/perlfaq4.pod,v
  retrieving revision 1.42
  retrieving revision 1.43
  diff -u -w -r1.42 -r1.43
  --- perlfaq4.pod	31 Jan 2003 17:40:44 -0000	1.42
  +++ perlfaq4.pod	23 Feb 2003 20:25:09 -0000	1.43
  @@ -1,6 +1,6 @@
   =head1 NAME
   
  -perlfaq4 - Data Manipulation ($Revision: 1.42 $, $Date: 2003/01/31 17:40:44 $)
  +perlfaq4 - Data Manipulation ($Revision: 1.43 $, $Date: 2003/02/23 20:25:09 $)
   
   =head1 DESCRIPTION
   
  @@ -316,7 +316,7 @@
   If you're using a version of Perl before 5.004, you must call C<srand>
   once at the start of your program to seed the random number generator.
   
  -	 BEGIN { srand() if $[ < 5.004 }
  +	 BEGIN { srand() if $] < 5.004 }
   
   5.004 and later automatically call C<srand> at the beginning.  Don't
   call C<srand> more than once---you make your numbers less random, rather