From: Dave Rolsky Date: Tue, 3 Feb 2009 22:00:36 +0000 (+0000) Subject: fix some typos reported by acme X-Git-Tag: 0.67~10 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0f62a43772e3d77a43475a3a9dca6e9cd08fce13;p=gitmo%2FMoose.git fix some typos reported by acme --- diff --git a/lib/Moose/Manual/BestPractices.pod b/lib/Moose/Manual/BestPractices.pod index a9ac4db..8fbe99d 100644 --- a/lib/Moose/Manual/BestPractices.pod +++ b/lib/Moose/Manual/BestPractices.pod @@ -35,7 +35,7 @@ immutable speeds up a lot of things, most notably object construction. If you override the C method in your class, make sure to play nice and call C to handle cases you're not -checking for explicitly.q +checking for explicitly. The default C method in L handles both a list and hashref of named parameters correctly, and also checks for a diff --git a/lib/Moose/Manual/Classes.pod b/lib/Moose/Manual/Classes.pod index d91e41a..13ccd73 100644 --- a/lib/Moose/Manual/Classes.pod +++ b/lib/Moose/Manual/Classes.pod @@ -66,7 +66,7 @@ classes, C: has 'username' => ( is => 'rw' ); -ote, that each call to C will I your parents. For +Note that each call to C will I your parents. For multiple inheritance you must provide all the parents at once, C. diff --git a/lib/Moose/Manual/MooseX.pod b/lib/Moose/Manual/MooseX.pod index 42a7bbe..30450dc 100644 --- a/lib/Moose/Manual/MooseX.pod +++ b/lib/Moose/Manual/MooseX.pod @@ -96,7 +96,7 @@ This is a role which adds a C 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;