From: Dave Rolsky Date: Tue, 6 May 2008 00:23:21 +0000 (+0000) Subject: Add a missing brace X-Git-Tag: 0_55~193 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7f785a28531b12a23f83266a6fc30d0a5cf53208;p=gitmo%2FMoose.git Add a missing brace --- diff --git a/lib/Moose/Cookbook/Recipe9.pod b/lib/Moose/Cookbook/Recipe9.pod index 4a3592d..c58bd3f 100644 --- a/lib/Moose/Cookbook/Recipe9.pod +++ b/lib/Moose/Cookbook/Recipe9.pod @@ -89,7 +89,7 @@ the method to pass additional options to the constructor. Good object-oriented code should allow itself to be subclassed gracefully. Let's tweak C<_build_child_tree>: - sub _build_child_tree + sub _build_child_tree { my $self = shift; return (ref $self)->new( parent => $self, @_ );