From: Dave Rolsky Date: Thu, 8 Jul 2010 23:21:44 +0000 (-0500) Subject: Remove some trailing whitesapce, and rework a paragraph. X-Git-Tag: 1.09~62 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=414ffc43a2e48f092bb72d9df90f4d4a85d97254;p=gitmo%2FMoose.git Remove some trailing whitesapce, and rework a paragraph. --- diff --git a/lib/Moose/Manual/BestPractices.pod b/lib/Moose/Manual/BestPractices.pod index 52df8ac..3e57732 100644 --- a/lib/Moose/Manual/BestPractices.pod +++ b/lib/Moose/Manual/BestPractices.pod @@ -15,7 +15,7 @@ opinions. Feel free to ignore us. =head2 C and immutabilize -We recommend that you remove the Moose sugar and end your Moose class +We recommend that you remove the Moose sugar and end your Moose class definitions by making your class immutable. package Person; @@ -39,8 +39,9 @@ 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. -C may be used to unimport only Moose's imported symbols. -L provides finer-grained control than L. +You can also write C to unimport only Moose's imported symbols. The +L module is another alternative, providing finer-grained +control than L. =head2 Never override C