소스 검색

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)
 			+ "=";