We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdb102d commit ed42f91Copy full SHA for ed42f91
README.md
@@ -46,7 +46,7 @@ Available templates for **Haxe**:
46
* `.notnull` – checks expression to be non-null `if (expr != null)`
47
* `.not` – negates value of inner boolean expression `!expr`
48
* `.foreach` – iterates over collection `for(it in expr`)
49
-* `.for` – for Array|Vector|Iterator|Iterable surrounds with loop `for (i in 0...expr.Length)`
+* `.for` – for Array|Vector|Iterator|Iterable surrounds with loop `for (i in 0...expr.length)`
50
* `.for` – for Numeric surrounds with loop `for (i in 0...expr)`
51
* `.var` – initialize new variable with expression `var x = expr;`
52
* `.new` – produces instantiation expression for type `new T()`
0 commit comments