dlang-community / dfmt

Dfmt is a formatter for D source code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

No space in ternary operator inside an array

belka-ew opened this issue · comments

./bin/dfmt test.d | diff -Nur test.d -

@@ -1,4 +1,4 @@
 void f()
 {
-    return aa[x ? 1 : 0];
+    return aa[x ? 1: 0];
 }