Skip to content

Commit

Permalink
Update changes to modify [0][0] to [0, 0]
Browse files Browse the repository at this point in the history
Addressing comments to change [0][0] to [0, 0]
  • Loading branch information
jmh530 authored Jul 26, 2016
1 parent 1ab23fa commit f21cf84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion std/experimental/ndslice/selection.d
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ template pack(K...)
auto b = a.pack!(2);

assert(b.shape == [3, 4]);
assert(b[0][0].shape == [5, 6]);
assert(b[0, 0].shape == [5, 6]);

assert(a == b);

Expand Down

0 comments on commit f21cf84

Please sign in to comment.