projects
/
gitmo/Moose.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
5bea6d5
)
Add a missing brace
Dave Rolsky [Tue, 6 May 2008 00:23:21 +0000 (
00:23
+0000)]
lib/Moose/Cookbook/Recipe9.pod
patch
|
blob
|
blame
|
history
diff --git
a/lib/Moose/Cookbook/Recipe9.pod
b/lib/Moose/Cookbook/Recipe9.pod
index
4a3592d
..
c58bd3f
100644
(file)
--- 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, @_ );