diff --git a/src/lib/Plumage/Command.nqp b/src/lib/Plumage/Command.nqp index 9a0e399..a29b97c 100644 --- a/src/lib/Plumage/Command.nqp +++ b/src/lib/Plumage/Command.nqp @@ -54,9 +54,9 @@ method new(:$action, :$args, :$usage, :$help) { } # Accessors -method action() { return $!action } -method args() { return $!args } -method usage() { return $!usage } -method help() { return $!help } +method action() { $!action } +method args() { $!args } +method usage() { $!usage } +method help() { $!help } # vim: ft=perl6