Forráskód Böngészése

Remove spaces around "in" in printBinop (#6527)

Valentin Lemière 8 éve
szülő
commit
0e89cc1eb1
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      std/haxe/macro/Printer.hx

+ 1 - 1
std/haxe/macro/Printer.hx

@@ -70,7 +70,7 @@ class Printer {
 		case OpMod: "%";
 		case OpInterval: "...";
 		case OpArrow: "=>";
-		case OpIn: " in ";
+		case OpIn: "in";
 		case OpAssignOp(op):
 			printBinop(op)
 			+ "=";