2
0
Justin Donaldson 9 жил өмнө
parent
commit
4c22c47045

+ 1 - 1
std/lua/_std/EReg.hx

@@ -104,7 +104,7 @@ class EReg {
 	}
 	}
 
 
 	public function split( s : String ) : Array<String> {
 	public function split( s : String ) : Array<String> {
-		// we can't use directly s.split because it's ignoring the 'g' flag
+		// we can't use directly Rex.split because it's ignoring the 'g' flag
 		var d = "#__delim__#";
 		var d = "#__delim__#";
 		return Boot.luaIteratorToArray(Rex.split(replace(s,d), d));
 		return Boot.luaIteratorToArray(Rex.split(replace(s,d), d));
 	}
 	}