Add a missing brace
Dave Rolsky [Tue, 6 May 2008 00:23:21 +0000 (00:23 +0000)]
lib/Moose/Cookbook/Recipe9.pod

index 4a3592d..c58bd3f 100644 (file)
@@ -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, @_ );