Author: moritz
Date: 2009-01-06 11:14:50 +0100 (Tue, 06 Jan 2009)
New Revision: 24784

Modified:
   docs/Perl6/Spec/S29-functions.pod
Log:
[S29] typos, thinkos and wording improvements, Brandon++, Tim++


Modified: docs/Perl6/Spec/S29-functions.pod
===================================================================
--- docs/Perl6/Spec/S29-functions.pod   2009-01-06 01:12:13 UTC (rev 24783)
+++ docs/Perl6/Spec/S29-functions.pod   2009-01-06 10:14:50 UTC (rev 24784)
@@ -202,7 +202,7 @@
  our Str multi method perl (Object $o)
 
 Returns a perlish representation of the object, so that calling C<eval>
-on the returned string reproduces the object as good as possible.
+on the returned string reproduces the object as accurately as possible.
 
 =back
 
@@ -224,10 +224,10 @@
 
 =item can
 
- our Bool multi method can ($self:, Str $method)
+ our Callable multi method can ($self:, Str $method)
 
 If there is a multi method of name C<$method> that can be called on
-C<$self>, then closure is return has C<$self> bound to the position
+C<$self>, then a closure is return which has C<$self> bound to the position
 of the invocant.
 
 Otherwise an undefined value is returned.
@@ -237,7 +237,7 @@
  our multi method clone (::T $self --> T)
  our multi method clone (::T $self, *%attributes --> T)
 
-The first variant retuns  an independent copy of C<$o> that is equivlant
+The first variant returns  an independent copy of C<$o> that is equivalent
 to C<$o>.
 
 The second variant does the same, but any named arguments override an
@@ -266,7 +266,7 @@
 
  our Bool multi method isa ($self:, $type)
 
-Returns true if a the invocant an instance of class C<$type>, or 
+Returns C<True> if a the invocant an instance of class C<$type>, or 
 of a subset type or a derived class (through inheritance) of C<$type>.
 
 =back

Reply via email to