From: Jesse Luehrs Date: Wed, 28 Sep 2011 16:23:13 +0000 (-0500) Subject: couple more typo fixes X-Git-Tag: 2.0301~13 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=588b4ba3465e18b5e4d5af239890343d1da836fa;p=gitmo%2FMoose.git couple more typo fixes --- diff --git a/lib/Moose/Manual/BestPractices.pod b/lib/Moose/Manual/BestPractices.pod index 0f7445e..bdf5ffe 100644 --- a/lib/Moose/Manual/BestPractices.pod +++ b/lib/Moose/Manual/BestPractices.pod @@ -34,10 +34,10 @@ definitions by making your class immutable. 1; The C bit is simply good code hygiene, as it removes -imported symbols from you class's namespace at the end of your package's -compile cycle, including Moose keywords. Once the class has been -built, these keywords are not needed. (This is the preferred to placing -C at the end of your package). +imported symbols from your class's namespace at the end of your package's +compile cycle, including Moose keywords. Once the class has been built, these +keywords are not needed. (This is preferred to placing C at the end +of your package). The C call allows Moose to speed up a lot of things, most notably object construction. The trade-off is that you can no longer change