diff --git a/lib/Grammar/Debugger.pm6 b/lib/Grammar/Debugger.pm6 index bcaa434..8a8cf35 100644 --- a/lib/Grammar/Debugger.pm6 +++ b/lib/Grammar/Debugger.pm6 @@ -12,7 +12,7 @@ Grammer::Debugger - interactive debugger for Perl 6 grammars In the file that has your grammar definition, merely load the module in the same lexical scope: - use Grammar::Debugger + use Grammar::Debugger; grammar Some::Grammar { ... } diff --git a/lib/Grammar/Tracer.pm6 b/lib/Grammar/Tracer.pm6 index e39699c..6855282 100644 --- a/lib/Grammar/Tracer.pm6 +++ b/lib/Grammar/Tracer.pm6 @@ -12,7 +12,7 @@ Grammer::Tracer - non-interactive debugger for Perl 6 grammars In the file that has your grammar definition, merely load the module in the same lexical scope: - use Grammar::Tracer + use Grammar::Tracer; grammar Some::Grammar { ... }