Skip to content

Commit c6ec526

Browse files
committed
turn tabs into spaces
1 parent f5bcc41 commit c6ec526

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/Perl6/Perl5/Differences.pod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -399,10 +399,10 @@ available, well, you can't, because everything is lexically scoped in Perl 6.
399399
You can, however, export multi definitions to any code that wishes to import it.
400400

401401
class TurkishStr {
402-
multi sub uc(TurkishStr $str) is export { ... }
402+
multi sub uc(TurkishStr $str) is export { ... }
403403

404-
# overload the string concatenation:
405-
multi sub infix:<~>(TurkishStr $us, TurkishStr $them) is export { ... }
404+
# overload the string concatenation:
405+
multi sub infix:<~>(TurkishStr $us, TurkishStr $them) is export { ... }
406406
}
407407

408408
If you want to offer a type cast to a particular type, just provide a method

0 commit comments

Comments
 (0)