瀏覽代碼

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

Valentin Lemière 8 年之前
父節點
當前提交
0e89cc1eb1
共有 1 個文件被更改,包括 1 次插入1 次删除
  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)
 			+ "=";