cvsuser     04/12/29 15:19:52

  Modified:    classes  complex.pmc
  Log:
   Fix a few typos
  
  Revision  Changes    Path
  1.17      +5 -5      parrot/classes/complex.pmc
  
  Index: complex.pmc
  ===================================================================
  RCS file: /cvs/public/parrot/classes/complex.pmc,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- complex.pmc       24 Dec 2004 04:41:55 -0000      1.16
  +++ complex.pmc       29 Dec 2004 23:19:52 -0000      1.17
  @@ -1,6 +1,6 @@
   /*
   Copyright: 2004 The Perl Foundation.  All Rights Reserved.
  -$Id: complex.pmc,v 1.16 2004/12/24 04:41:55 rubys Exp $
  +$Id: complex.pmc,v 1.17 2004/12/29 23:19:52 scog Exp $
   
   =head1 NAME
   
  @@ -459,7 +459,7 @@
   
   =item C<void set_number_keyed_int(INTVAL key, FLOATVAL v)>
   
  -Set real or imag dependig on key
  +Set real or imag depending on key
   
   */
   
  @@ -737,7 +737,7 @@
   
           VTABLE_morph(INTERP, dest, enum_class_Complex);
           /* a little speed optimisation: cache an intermediate number;
  -            i'm not sure the compiler does this */
  +            I'm not sure the compiler does this */
           mod = (RE(value) * RE(value) + IM(value) * IM(value));
   
           re = (RE(SELF) * RE(value) + IM(SELF) * IM(value)) / mod;
  @@ -787,7 +787,7 @@
   
   =item C<INTVAL is_equal (PMC* value)>
   
  -Compares the complex number with C<value> and returs true if they are equal.
  +Compares the complex number with C<value> and returns true if they are equal.
   
   =cut
   
  @@ -823,7 +823,7 @@
   
   /*
   
  -  TODO for better precision: hinted by vaxman according to "Numerival Recipes
  +  TODO for better precision: hinted by vaxman according to "Numerical Recipes
     in Fortran 77", 2nd edition, Press, Vetterling, Teukolsky, Flannery,
     Cambridge University Press, 2001, pp. 171ff:
   
  
  
  

Reply via email to