Small tweaks to namespace recommendation
Dave Rolsky [Thu, 19 Feb 2009 21:44:11 +0000 (21:44 +0000)]
lib/Moose/Manual/BestPractices.pod

index c73f4d3..2b4fd1b 100644 (file)
@@ -134,9 +134,11 @@ changing the parents.
 =head2 Namespace your types
 
 Use some sort of namespacing convention for type names. We recommend
-something like "MyApp::Type::Foo". If you're intending to package
-your types up for re-use using MooseX::Types later, avoid using
-characters that are invalid in perl identifiers such as ' ' and '.'.
+something like "MyApp::Type::Foo".
+
+If you're intending to package your types up for re-use using
+MooseX::Types later, avoid using characters that are invalid in perl
+identifiers such as a space or period.
 
 =head2 Do not coerce Moose built-ins directly