LuaLibraryLocale: clarify loc(str)
authorWuzzy
Thu, 03 May 2018 18:14:02 +0100
changeset 1408 af21a7367640
parent 1407 95ac8a844bef
child 1409 755e96dd1ff1
LuaLibraryLocale: clarify loc(str)
LuaLibraryLocale.wiki
--- a/LuaLibraryLocale.wiki	Thu May 03 02:46:36 2018 +0100
+++ b/LuaLibraryLocale.wiki	Thu May 03 18:14:02 2018 +0100
@@ -27,7 +27,7 @@
 l = loc ("Hello World")    -- Contains space
 l = loc('Hello World')     -- Not double quotes
 local str = "Hello World"
-l = loc(str)   -- Not a literal string
+l = loc(str)   -- Not a literal string, only use this if you use this together with `loc_noop`
 l = loc(str .. ", how are you?")   -- Only partially a literal string
 </code>