typo fix in does_role docs
Matt S Trout [Thu, 29 Mar 2012 19:51:21 +0000 (19:51 +0000)]
Changes
lib/Role/Tiny.pm

diff --git a/Changes b/Changes
index 2b634f3..1781477 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,4 @@
+  - Minor doc fix to does_role
   - Split Role::Tiny out into its own dist
 
 Changes below this line are from when Role::Tiny was still bundled with Moo:
index 7b6335d..40f8d0b 100644 (file)
@@ -342,7 +342,7 @@ Returns true if class has been composed with role.
 This subroutine is also installed as ->does on any class a Role::Tiny is
 composed into unless that class already has an ->does method, so
 
-  if ($foo->does_role('Some::Role')) {
+  if ($foo->does('Some::Role')) {
     ...
   }