Remove doubled word
Dave Rolsky [Thu, 8 Jul 2010 23:20:42 +0000 (18:20 -0500)]
lib/Moose/Manual/BestPractices.pod

index f0edc9b..52df8ac 100644 (file)
@@ -34,7 +34,7 @@ definitions by making your class immutable.
 The C<use namespace::autoclean> 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<make_immutable>
+built, these keywords are not needed. The C<make_immutable>
 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.