summaryrefslogtreecommitdiffstats
path: root/lib/Bread/Board.pm
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2012-12-28 06:45:36 -0600
committerJesse Luehrs <doy@tozt.net>2012-12-28 06:45:36 -0600
commit51f82ea92b494418fe5c73b618b1420a347c9673 (patch)
treea760361dda9b168b0c7448f5b5e09528a17251e4 /lib/Bread/Board.pm
parent78a70ab703db2f44d4af3117388e62a2ac1396fa (diff)
downloadp6-bread-board-51f82ea92b494418fe5c73b618b1420a347c9673.tar.gz
p6-bread-board-51f82ea92b494418fe5c73b618b1420a347c9673.zip
method stubs are {...}, not {*}
Diffstat (limited to 'lib/Bread/Board.pm')
-rw-r--r--lib/Bread/Board.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Bread/Board.pm b/lib/Bread/Board.pm
index 51f5934..1713678 100644
--- a/lib/Bread/Board.pm
+++ b/lib/Bread/Board.pm
@@ -24,7 +24,7 @@ role Bread::Board::Traversable {
return $root;
}
- method get_enclosing_container {*}
+ method get_enclosing_container {...}
method _fetch (Str $path) {
return self if $path eq '';
@@ -38,7 +38,7 @@ role Bread::Board::Traversable {
return self._fetch_single(@parts[0])._fetch($rest);
}
- method _fetch_single (Str $path) {*}
+ method _fetch_single (Str $path) {...}
}
role Bread::Board::Service does Bread::Board::Traversable {
@@ -63,7 +63,7 @@ role Bread::Board::Service does Bread::Board::Traversable {
return;
}
- method get {*};
+ method get {...}
method get_dependency ($name) {
return $.dependencies.{$name};