Skip to content

Commit cfc5152

Browse files
committed
Fixed mixed tabs and spaces in one of the code examples
Perhaps we should replace all tabs with spaces? This will eliminate all such occurances of mixed indentation styles.
1 parent 208197f commit cfc5152

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/Language/subscripts.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ Dimensions in subscripts are separated by a semiconon, allowing to mix lists of
308308
elements and dimensions.
309309
310310
my @twodim = (<a b c>, (1,2,3));
311-
dd @twodim;
311+
dd @twodim;
312312
# OUTPUT«Array @twodim = [("a", "b", "c"), (1, 2, 3)]␤»
313313
dd @twodim[0,1;1]; # 2nd element of both lists
314314
# OUTPUT«("b", 2)␤»

0 commit comments

Comments
 (0)