Changeset 16157 for docs/Perl6/Spec

Show
Ignore:
Timestamp:
05/02/07 01:19:37 (19 months ago)
Author:
lwall
Message:

typo noted by rhr++

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • docs/Perl6/Spec/IO.pod

    r16156 r16157  
    321321    our Bool method print (IO $self: *@LIST) 
    322322    our Bool multi print (*@LIST) 
    323     our Bool method print (Str $self: IO *io) 
     323    our Bool method print (Str $self: IO $io) 
    324324 
    325325Prints a string or a list of strings.  Returns Bool::True if 
     
    346346    our Bool method say (IO $self: *@LIST) 
    347347    our Bool multi say (*@LIST) 
    348     our Bool method say (Str $self: IO *io) 
     348    our Bool method say (Str $self: IO $io) 
    349349 
    350350This is identical to print() except that it auto-appends a newline after