Skip to content

Commit edab733

Browse files
committed
Style
1 parent 86a7c59 commit edab733

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

std/numeric.d

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3875,7 +3875,7 @@ public:
38753875
{
38763876
onOutOfMemoryError();
38773877
}
3878-
this(pStorage[0..bufferSize]);
3878+
this(pStorage[0 .. bufferSize]);
38793879
}
38803880
}
38813881

@@ -3912,7 +3912,7 @@ public:
39123912
* The index of the `i`th lookup is `2^^i` and the length is also `2^^i`.
39133913
*/
39143914

3915-
memSpace[0..2] = float.nan;
3915+
memSpace[0 .. 2] = float.nan;
39163916

39173917
auto lastRow = memSpace[$ - size .. $];
39183918
lastRow[0] = 0; // -sin(0) == 0.

0 commit comments

Comments
 (0)