Skip to content

Commit 2940963

Browse files
committed
whitespace
1 parent 1fe9282 commit 2940963

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/Language/py-nutshell.pod6

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -782,10 +782,10 @@ You can obtain the same behavior from Raku using the List type.
782782
783783
my $list1 = (1, "two", 3, "hat");
784784
my $list2 = (5, 6, "seven");
785-
say $list1[1]; # OUTPUT: «two␤»
785+
say $list1[1]; # OUTPUT: «two␤»
786786
my $list3 = (slip($list1), slip($list2));
787-
my $list4 = (|$list1, |$list2); # equivalent to previous line
788-
say $list3; # OUTPUT: «(1, two, 3, hat, 5, 6, seven)␤»
787+
my $list4 = (|$list1, |$list2); # equivalent to previous line
788+
say $list3; # OUTPUT: «(1, two, 3, hat, 5, 6, seven)␤»
789789
790790
=end pod
791791

0 commit comments

Comments
 (0)