Revision 26299

Date:
2009/04/20 08:02:35
Author:
lwall
Revision Log:
s/readline/get/
Files:

Legend:

 
Added
 
Removed
 
Modified
  • docs/Perl6/Spec/S32-setting-library/IO.pod

     
    300 300
    301 301 =item method input-line-separator( --> Str) is rw
    302 302
    303 This regulates how "readline" behaves.
    303 This regulates how "get" and "lines" behave.
    304 304
    305 305 The input line (record) separator, newline by default.
    306 306 This influences Perl's idea of what a ``line'' is.
     
    328 328
    329 329 [Deprecated.]
    330 330
    331 =item method readline( --> Str)
    331 =item method get( --> Str)
    332 332
    333 333 Reads the stream before it finds a C<$.input-line-separator> and
    334 334 returns it (autochomped by default).