Changeset 24108 for v6/mildew

Show
Ignore:
Timestamp:
11/28/08 20:52:51 (6 weeks ago)
Author:
ruoso
Message:

[mildew] small typo fix

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • v6/mildew/Map.pm

    r24107 r24108  
    3939} 
    4040 
    41 knowhow Itemiterator { 
     41knowhow ItemIterator { 
    4242    has $.input; 
    4343    has @.prefetch; 
     
    8383    method prefix:<=> { 
    8484        if (@.input.exists($.count)) { 
     85            return \@.input[$.count++]; 
     86        } else { 
    8587            fail OutOfItemsException; 
    86         } else { 
    87             return \@.input[$.count++]; 
    8888        } 
    8989    }