From: Dave Rolsky Date: Thu, 8 Jul 2010 23:20:42 +0000 (-0500) Subject: Remove doubled word X-Git-Tag: 1.09~63 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=dc76434c5a1afb1e556490b3d4e062cd33aec4d7;p=gitmo%2FMoose.git Remove doubled word --- diff --git a/lib/Moose/Manual/BestPractices.pod b/lib/Moose/Manual/BestPractices.pod index f0edc9b..52df8ac 100644 --- a/lib/Moose/Manual/BestPractices.pod +++ b/lib/Moose/Manual/BestPractices.pod @@ -34,7 +34,7 @@ definitions by making your class immutable. 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 needed. The C +built, these keywords are not needed. 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 the class definition.