diff --git a/src/core/List.pm b/src/core/List.pm index 8e9a442f586..fa9173cfdf0 100644 --- a/src/core/List.pm +++ b/src/core/List.pm @@ -341,7 +341,7 @@ my class List does Positional { } multi method gist(List:D:) { - join ' ', map { $_.defined ?? $_.Str !! $_.perl }, @(self) + join ' ', map { $_.defined ?? $_.gist !! $_.perl }, @(self) } multi method perl(List:D \SELF:) { self.gimme(*);