From: Shawn M Moore Date: Thu, 30 Apr 2009 02:31:00 +0000 (-0400) Subject: Get rid of some "I"s for "we"s X-Git-Tag: 0.77~19 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8b870d0e6150a28c8fab5610d412ceb57e700ee7;p=gitmo%2FMoose.git Get rid of some "I"s for "we"s --- diff --git a/lib/Moose/Cookbook/FAQ.pod b/lib/Moose/Cookbook/FAQ.pod index cdfdda6..d12cb07 100644 --- a/lib/Moose/Cookbook/FAQ.pod +++ b/lib/Moose/Cookbook/FAQ.pod @@ -181,7 +181,7 @@ other classes which are built with Moose. Well, the first question to ask is if you actually need both inflate and deflate. -If you only need to inflate, then I suggest using coercions. Here is +If you only need to inflate, then we suggest using coercions. Here is some basic sample code for inflating a L object: subtype 'DateTime' @@ -224,7 +224,7 @@ is outside the scope of this document, ask on #moose or send a mail to the list. Still another option is to write a custom attribute metaclass, which -is also outside the scope of this document, but I would be happy to +is also outside the scope of this document, but we would be happy to explain it on #moose or the mailing list. =head2 Method Modifiers @@ -247,7 +247,7 @@ The C method modifier has neither of these limitations. =head3 Can I use C to stop execution of a method? Yes, but only if you throw an exception. If this is too drastic a -measure then I suggest using C instead. The C method +measure then we suggest using C instead. The C method modifier is the only modifier which can gracefully prevent execution of the main method. Here is an example: