summaryrefslogtreecommitdiff
path: root/lib/WebCoso/Maker/HTML.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/WebCoso/Maker/HTML.pm')
-rw-r--r--lib/WebCoso/Maker/HTML.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/WebCoso/Maker/HTML.pm b/lib/WebCoso/Maker/HTML.pm
index 414fe2b..d2803af 100644
--- a/lib/WebCoso/Maker/HTML.pm
+++ b/lib/WebCoso/Maker/HTML.pm
@@ -1,7 +1,7 @@
# -*- mode: perl6 -*-
use WebCoso::Maker;
class WebCoso::Maker::HTML does WebCoso::Maker['xhtml','html'] {
- method process-contents(:src($xhtml),:@deps) {
- return "{$xhtml} decorated";
+ method process-contents($xhtml) {
+ return "{$xhtml.contents} decorated";
}
}