cvsuser     05/01/02 18:05:37

  Modified:    ops      var.ops
  Log:
   Fix typos
  
  Revision  Changes    Path
  1.24      +3 -3      parrot/ops/var.ops
  
  Index: var.ops
  ===================================================================
  RCS file: /cvs/public/parrot/ops/var.ops,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- var.ops   7 Dec 2004 13:08:39 -0000       1.23
  +++ var.ops   3 Jan 2005 02:05:37 -0000       1.24
  @@ -118,7 +118,7 @@
   exist, it will be created.  If $1 is negative, count out from the
   current lexical scope; otherwise, count in from the outermost scope.
   So store_lex -1, .... will operate on the current pad. Lexicals can
  -be restrieved by index too: the index is generated in storage order.
  +be retrieved by index too: the index is generated in storage order.
   
   =item B<store_lex>(in INT, in INT, in PMC)
   
  @@ -157,7 +157,7 @@
   =item B<find_lex>(out PMC, in INT, in STR)
   
   Find the lexical variable named $3 at depth $2 and store it in $1.
  -If $2 is negative the, count out from the current lexical scope;
  +If $2 is negative, then count out from the current lexical scope;
   otherwise, count up from the outermost scope.
   
   =item B<find_lex>(out PMC, in INT)
  @@ -167,7 +167,7 @@
   =item B<find_lex>(out PMC, in INT, in INT)
   
   Find the lexical variable at position $3 at depth $2 and store it in
  -$1. If $2 is negative the, count out from the current lexical scope;
  +$1. If $2 is negative, then count out from the current lexical scope;
   otherwise, count up from the outermost scope.
   
   =cut
  
  
  

Reply via email to