From: Jesse Luehrs Date: Tue, 3 Apr 2012 05:57:45 +0000 (-0500) Subject: fix spelling error X-Git-Tag: 2.0500~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=715c850ce4043cdc62706633062fcbdc7d55ef7e;p=gitmo%2FMoose.git fix spelling error --- diff --git a/lib/Moose/Manual/BestPractices.pod b/lib/Moose/Manual/BestPractices.pod index cccb3b0..6895042 100644 --- a/lib/Moose/Manual/BestPractices.pod +++ b/lib/Moose/Manual/BestPractices.pod @@ -105,7 +105,7 @@ public API bigger than it has to be. =head2 Avoid C As described above, you rarely actually need a clearer or a predicate. -C adds both to your public API, which exposes you to usecases that +C adds both to your public API, which exposes you to use cases that you must now test for. It's much better to avoid adding them until you really need them - use explicit C and C options instead.