From: Jesse Luehrs <doy@tozt.net>
Date: Sat, 7 May 2011 06:07:24 +0000 (-0500)
Subject: stop recommending '.' as a type namespace separator
X-Git-Tag: 2.0100~139
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3c4d29c3e4f982c5a8d295eaba00e4f55824ae3d;p=gitmo%2FMoose.git

stop recommending '.' as a type namespace separator
---

diff --git a/lib/Moose/Cookbook/Basics/Recipe4.pod b/lib/Moose/Cookbook/Basics/Recipe4.pod
index da87d90..65e849e 100644
--- a/lib/Moose/Cookbook/Basics/Recipe4.pod
+++ b/lib/Moose/Cookbook/Basics/Recipe4.pod
@@ -151,7 +151,7 @@ The type constraints we created are reusable. Type constraints are
 stored by name in a global registry. This means that we can refer to
 them in other classes. Because the registry is global, we do recommend
 that you use some sort of pseudo-namespacing in real applications,
-like C<MyApp.Type.USState>.
+like C<MyApp::Type::USState>.
 
 These two subtypes allow us to define a simple C<Address> class.