Changeset 19635 for docs

Show
Ignore:
Timestamp:
01/23/08 02:59:02 (12 months ago)
Author:
tjp
Message:

Fixed typos in docs/Perl6/Overview.pod

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • docs/Perl6/Overview.pod

    r11853 r19635  
    481481=head2 Rules 
    482482 
    483 Perl's rules are called regular expression's in other languges. 
     483Perl's rules are called regular expressions in other languges. 
    484484Perl's regular expression support is both broad and deep, and is the 
    485485subject of lengthy documentation in L<XXX>, and 
     
    543543    /^\d+/              string starts with one or more digits 
    544544    /^$/                nothing in the string (start and end are adjacent) 
    545     /[\d\s]{3}/         a three digits, each followed by a whitespace  
    546                         character (eg "3 4 5 ") 
     545    /[\d\s]{3}/         string contains three digits, each followed by a 
     546                        whitespace character (eg "3 4 5 ") 
    547547    /[a.]+/             matches a string in which every odd-numbered letter  
    548548                        is a (eg "abacadaf") 
     
    570570=item Other regexp features 
    571571 
    572 Perl rules also support named rules,grammars,backreferences, lookaheads, and 
     572Perl rules also support named rules, grammars, backreferences, lookaheads, and 
    573573all kinds of other complex details.  Read all about them in L<XXX>. 
    574574