Changeset 9985 for docs/Perl6/FAQ

Show
Ignore:
Timestamp:
04/17/06 18:39:06 (3 years ago)
Author:
masak
Message:

fixed various typos in Capture.pod

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • docs/Perl6/FAQ/Capture.pod

    r9984 r9985  
    2323=head2 How 
    2424 
    25 =head3 Can I see how captures look like? Does \$x no longer work? 
     25=head3 Can I see what captures look like? Does \$x no longer work? 
    2626 
    2727Prefix C<\> is now the Capture constructor.  These are all equivalent: 
     
    8080=head3 What do you mean by "invocant"? 
    8181 
    82 When you call a object's method, the C<self> inside the method is set 
     82When you call an object's method, the C<self> inside the method is set 
    8383to that object. These are all equivalent: 
    8484 
     
    130130 
    131131Method/subroutine calls are determined by the presence of an invocant at the 
    132 calling site.  Single/multi dispatch are determined by the precense of "multi" 
     132calling site.  Single/multi dispatch are determined by the presence of "multi" 
    133133in the declaration site.  The two concepts are entirely orthogonal. 
    134134 
     
    205205(Captures are immutable; their underlying data may not be.) 
    206206 
    207 =head3 So $x = @y does not mean $x = \@y anymore. What does it mean then? 
     207=head3 So $x = @y does not mean $x = \@y anymore. Then, what does it mean? 
    208208 
    209209It means assigning C<$x> with the object bound to C<@y> (typically an