Fix spelling of Perl 6 (#3672)

Resolves #3671.
This commit is contained in:
John Gardner
2017-06-20 19:39:39 +10:00
committed by GitHub
parent 9312353d20
commit 128abe3533
26 changed files with 13 additions and 13 deletions

View File

@@ -0,0 +1,7 @@
module ContainsUnicode {
sub uc-and-join(*@things, :$separator = ', ') is export {
@things».uc.join($separator)
}
}
# vim: ft=perl6