From f8892e148823bc9e593acb915052fc4e5fe5386e Mon Sep 17 00:00:00 2001 From: BarrOff <58253563+BarrOff@users.noreply.github.com> Date: Mon, 6 Mar 2023 00:18:08 +0100 Subject: docs: use correct arguments in command string example --- challenge-206/barroff/raku/ch-1.raku | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenge-206/barroff/raku/ch-1.raku b/challenge-206/barroff/raku/ch-1.raku index c7aa19b521..349e76e1d1 100644 --- a/challenge-206/barroff/raku/ch-1.raku +++ b/challenge-206/barroff/raku/ch-1.raku @@ -39,7 +39,7 @@ multi sub MAIN('test') { 'works for ("10:10", "09:30", "09:00", "09:55")'; } -#| Take user provided list like 1 2 2 3 +#| Take user provided list like 12:23 14:31 multi sub MAIN(*@elements where @elements.elems ≥ 2 && all(@elements) ~~ $time-format) { my Str @str-elements = @elements; say shortest-time(@str-elements); -- cgit