Browse Source

Hide BaseString from the API docs (#8925)

Jens Fischer 5 years ago
parent
commit
fe493e8bd3
1 changed files with 2 additions and 2 deletions
  1. 2 2
      std/lua/_std/String.hx

+ 2 - 2
std/lua/_std/String.hx

@@ -25,9 +25,9 @@ import lua.Table;
 import lua.Boot;
 
 #if lua_vanilla
-typedef BaseString = lua.NativeStringTools;
+private typedef BaseString = lua.NativeStringTools;
 #else
-typedef BaseString = lua.lib.luautf8.Utf8;
+private typedef BaseString = lua.lib.luautf8.Utf8;
 #end
 
 @:coreApi