From: Dave Rolsky Date: Mon, 18 Oct 2010 15:53:42 +0000 (-0500) Subject: s/simply/simple/ X-Git-Tag: 1.17~5 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=40092241b3121edba15c1a5ae68e0bf46c5eae26;hp=39f9de27d6202e0e31b36e269ab137007fe73a05;p=gitmo%2FMoose.git s/simply/simple/ --- diff --git a/lib/Moose/Cookbook/Basics/Recipe3.pod b/lib/Moose/Cookbook/Basics/Recipe3.pod index 6e22d34..1028ecd 100644 --- a/lib/Moose/Cookbook/Basics/Recipe3.pod +++ b/lib/Moose/Cookbook/Basics/Recipe3.pod @@ -117,7 +117,7 @@ exception. (2) In the second recipe the B's C attribute had a default value of C<0>. Given a non-reference, Perl copies the I. However, given a reference, it does not do a deep clone, -instead simply copying the reference. If you just specified a simply +instead simply copying the reference. If you just specified a simple reference for a default, Perl would create it once and it would be shared by all objects with that attribute.