Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
raiph committed Jul 30, 2012
1 parent fe9f6de commit 6b87349
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions lib/Mu.pod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
class Mu { ... }
The root of the Perl 6 type hierarchy. For the origin of the name, see
L<http://en.wikipedia.org/wiki/Mu_%28negative%29>. One can also say that
L<http://en.wikipedia.org/wiki/Mu_%28negative%29>. One can also say that
there are many undefined values in Perl 6, and C<Mu> is the I<most undefined>
value.
Expand All @@ -19,14 +19,14 @@ L<Any>.
multi sub defined(Mu) returns Bool:D
multi method defined() returns Bool:D
Returns C<False> on the type object, and C<True> otherwise
Returns C<False> on the type object, and C<True> otherwise.
=head2 Bool
multi sub Bool(Mu) returns Bool:D
multi method Bool() returns Bool:D
Returns C<False> on the type object, and C<True> otherwise
Returns C<False> on the type object, and C<True> otherwise.
=head2 Str
Expand Down Expand Up @@ -67,11 +67,10 @@ the name of a named argument.
multi method new(*%attrinit)
Default method for constructing (create + initialize) new objects
of a class. This method expects only named arguments which are then
of a class. This method expects only named arguments which are then
used to initialize attributes with accessors of the same name.
Classes may provide
their own C<new> method to override this default.
Classes may provide their own C<new> method to override this default.
=head2 bless
Expand All @@ -83,7 +82,7 @@ If you pass a C<Whatever> as a candidate, it creates a new object
of the same type as the invocant, and then uses the named arguments
to initialize attributes.
If you pass something else than a C<Whatever> object as a candidate,
If you pass something other than a C<Whatever> object as a candidate,
it simply does the attribute initialization on the C<$candidate>.
In both cases, the object with the attributes initialized is returned.
Expand Down

0 comments on commit 6b87349

Please sign in to comment.