fix some typos reported by acme
Dave Rolsky [Tue, 3 Feb 2009 22:00:36 +0000 (22:00 +0000)]
lib/Moose/Manual/BestPractices.pod
lib/Moose/Manual/Classes.pod
lib/Moose/Manual/MooseX.pod

index a9ac4db..8fbe99d 100644 (file)
@@ -35,7 +35,7 @@ immutable speeds up a lot of things, most notably object construction.
 
 If you override the C<BUILDARGS> method in your class, make sure to
 play nice and call C<SUPER::BUILDARGS> to handle cases you're not
-checking for explicitly.q
+checking for explicitly.
 
 The default C<BUILDARGS> method in L<Moose::Object> handles both a
 list and hashref of named parameters correctly, and also checks for a
index d91e41a..13ccd73 100644 (file)
@@ -66,7 +66,7 @@ classes, C<extends>:
 
   has 'username' => ( is => 'rw' );
 
-ote, that each call to C<extends> will I<reset> your parents. For
+Note that each call to C<extends> will I<reset> your parents. For
 multiple inheritance you must provide all the parents at once,
 C<extends 'Foo', 'Bar'>.
 
index 42a7bbe..30450dc 100644 (file)
@@ -96,7 +96,7 @@ This is a role which adds a C<new_with_options> method to your
 class. This is a constructor that takes the command line options and
 uses them to populate attributes.
 
-Thia makes writing a command-line application as a module trivially
+This makes writing a command-line application as a module trivially
 simple:
 
   package App::Foo;