From: Shlomi Fish Date: Wed, 16 Dec 2009 16:14:53 +0000 (+0200) Subject: Fix a typo. X-Git-Tag: 0.93_01~29 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d00494583f0935adada6c9cf781323e8cbd7e597;p=gitmo%2FMoose.git Fix a typo. We (accidently) the Role... --- diff --git a/lib/Moose/Cookbook/Roles/Recipe1.pod b/lib/Moose/Cookbook/Roles/Recipe1.pod index 6f8ea41..491af1d 100644 --- a/lib/Moose/Cookbook/Roles/Recipe1.pod +++ b/lib/Moose/Cookbook/Roles/Recipe1.pod @@ -134,9 +134,9 @@ which ultimately rely on C. $self->less_than($other) || $self->equal_to($other); } -Finally, we the C role. This role exists solely to provide -an interface. It has no methods, just a list of required methods. In -this case, it just requires a C method. +Finally, we define the C role. This role exists solely to +provide an interface. It has no methods, just a list of required methods. +In this case, it just requires a C method. An interface role is useful because it defines both a method and a I. We know that any class which does this role has a