Jelajahi Sumber

Lua: fixing comments

Justin Donaldson 9 tahun lalu
induk
melakukan
4c22c47045
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  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));
 	}