Pārlūkot izejas kodu

Lua: fixing comments

Justin Donaldson 9 gadi atpakaļ
vecāks
revīzija
4c22c47045
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      std/lua/_std/EReg.hx

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

@@ -104,7 +104,7 @@ class EReg {
 	}
 
 	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__#";
 		return Boot.luaIteratorToArray(Rex.split(replace(s,d), d));
 	}