Browse Source

Lua: rename LuaString to NativeStringTools, following the pattern from the python target

Justin Donaldson 9 years ago
parent
commit
e815ae460d
1 changed files with 4 additions and 2 deletions
  1. 4 2
      std/lua/NativeStringTools.hx

+ 4 - 2
std/lua/LuaString.hx → std/lua/NativeStringTools.hx

@@ -1,7 +1,9 @@
 package lua;
 package lua;
 /**
 /**
-  These are all externs for the base Lua "string" class.  Note that all
-  relevant indexes are "1" based.
+  These are all externs for the base Lua "string" class, which functions 
+  as an additional set of string tools.
+
+  Note that all relevant indexes are "1" based.
  **/
  **/
 @:native("_G.string")
 @:native("_G.string")
 extern class LuaString {
 extern class LuaString {