Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Commit

Permalink
add a space to the "Obsolote use" error message
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Nov 22, 2009
1 parent 88e6e26 commit a10da9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Regex/P6Regex/Grammar.pm
Expand Up @@ -2,7 +2,7 @@ grammar Regex::P6Regex::Grammar is HLL::Grammar;

method obs ($old, $new, $when = 'in Perl 6') {
self.panic('Obsolete use of ' ~ ~$old ~ ';'
~ ~$when ~ ' please use ' ~ ~$new ~ 'instead');
~ ~$when ~ ' please use ' ~ ~$new ~ ' instead');
}

token ws { [ \s+ | '#' \N* ]* }
Expand Down

0 comments on commit a10da9f

Please sign in to comment.