Subject: | Misspellings and example bug |
The following text from the POD:
==
Additionally, you can use named arugments with the %args block syntax:
$mason->compile( text=>'%args>$label</%args>Hello <% $label %>.' )->( name=>'Dave' );
==
should, I believe, be:
==
Additionally, you can use named *arguments* with the %args block syntax:
$mason->compile( text=>'<%args>$label</%args>Hello <% $label %>.' )->( label=>'Dave' );
==
Note the inserted "<" before %args, and the changing of "name" to "label" for the hash
name.