LuaLibraryLocale.wiki
changeset 1408 af21a7367640
parent 1372 8f3e1058f2bb
--- 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>