Skip to content

Commit

Permalink
Fixing space after std.range
Browse files Browse the repository at this point in the history
Adding a space after std.range to pass Travis CI.
  • Loading branch information
jmh530 committed Jul 27, 2016
1 parent c84e809 commit 623d5b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion std/experimental/ndslice/selection.d
Expand Up @@ -99,7 +99,7 @@ template pack(K...)
@safe @nogc pure nothrow unittest
{
import std.experimental.ndslice : sliced, Slice, pack;
import std.range: iota;
import std.range : iota;

auto r = (3 * 4 * 5 * 6).iota;
auto a = r.sliced(3, 4, 5, 6);
Expand Down

0 comments on commit 623d5b1

Please sign in to comment.