Explorar o código

fix indentation

frabbit %!s(int64=11) %!d(string=hai) anos
pai
achega
394e8c54c7
Modificáronse 1 ficheiros con 3 adicións e 3 borrados
  1. 3 3
      tests/unit/issues/Issue3191.hx

+ 3 - 3
tests/unit/issues/Issue3191.hx

@@ -5,9 +5,9 @@ class Issue3191 extends Test {
 
 	function test() {
 		var it = [1, 2, 3].iterator();
-        eq(1, it.next());
-        eq(true, it.hasNext());
-        eq(2, it.next());
+		eq(1, it.next());
+		eq(true, it.hasNext());
+		eq(2, it.next());
 		eq(true, it.hasNext());
 		eq(3, it.next());
 		eq(false, it.hasNext());