From: Jesse Luehrs Date: Sat, 7 May 2011 01:30:56 +0000 (-0500) Subject: typo fixes X-Git-Tag: 2.0003~30 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2f1b9a3940923ddad69c7c270002cf1830449b75;p=gitmo%2FMoose.git typo fixes --- diff --git a/lib/Moose/Cookbook/Basics/Recipe1.pod b/lib/Moose/Cookbook/Basics/Recipe1.pod index a39533a..d9c478f 100644 --- a/lib/Moose/Cookbook/Basics/Recipe1.pod +++ b/lib/Moose/Cookbook/Basics/Recipe1.pod @@ -71,7 +71,7 @@ that we expect the value stored in this attribute to pass the type constraint for C (1). The accessor generated for this attribute will be read-write. -The C<< requires => 1 >> parameter means that this attribute must be +The C<< required => 1 >> parameter means that this attribute must be provided when a new object is created. A point object without coordinates doesn't make much sense, so we don't allow it. @@ -193,13 +193,13 @@ subclassing, and a simple method modifier. =item (1) -Moose provides a number of builtin type constraints are provided by, -of which C is one. For more information on the type constraint -system, see L. +Moose provides a number of builtin type constraints, of which C +is one. For more information on the type constraint system, see +L. =item (2) -The C keyword support multiple inheritance. Simply pass all +The C keyword supports multiple inheritance. Simply pass all of your superclasses to C as a list: extends 'Foo', 'Bar', 'Baz'; @@ -207,8 +207,7 @@ of your superclasses to C as a list: =item (3) Moose supports using instance structures other than blessed hash -references (such as in a glob reference - see -L). +references (such as glob references - see L). =back