summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortapple <tapplek@gmail.com>2026-01-30 06:05:36 -0800
committertapple <tapplek@gmail.com>2026-01-30 07:26:01 -0800
commitc86f4dd30e53f2586da88c2e4b878bbcd53b7667 (patch)
tree508afef38b0c839ce68115e89685a5e94d3cb36c
parenta78b8777a30a643d36b7c4d27800cca381ec3042 (diff)
Document the error behavior of llbase64 and lljson
-rw-r--r--indra/newview/app_settings/keywords_lua_default.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/newview/app_settings/keywords_lua_default.xml b/indra/newview/app_settings/keywords_lua_default.xml
index 62d7c32022..26d0bf0831 100644
--- a/indra/newview/app_settings/keywords_lua_default.xml
+++ b/indra/newview/app_settings/keywords_lua_default.xml
@@ -12986,7 +12986,7 @@ Returns true if result is non-zero.</string>
<key>sleep</key>
<real>0.0</real>
<key>tooltip</key>
- <string>Decodes a base64 string to a string, or buffer if asBuffer is true</string>
+ <string>Decodes a base64 string to a string, or buffer if asBuffer is true. Returns an empty string/buffer if input is invalid.</string>
</map>
<key>llbase64.encode</key>
<map>
@@ -13040,7 +13040,7 @@ Returns true if result is non-zero.</string>
<key>sleep</key>
<real>0.0</real>
<key>tooltip</key>
- <string>Decodes a JSON string to a Lua value</string>
+ <string>Decodes a JSON string to a Lua value. Raises an error if JSON is invalid.</string>
</map>
<key>lljson.encode</key>
<map>
@@ -13063,7 +13063,7 @@ Returns true if result is non-zero.</string>
<key>sleep</key>
<real>0.0</real>
<key>tooltip</key>
- <string>Encodes a Lua value as JSON</string>
+ <string>Encodes a Lua value as JSON. Raises an error if value contains unsupported types.</string>
</map>
<key>lljson.sldecode</key>
<map>
@@ -13086,7 +13086,7 @@ Returns true if result is non-zero.</string>
<key>sleep</key>
<real>0.0</real>
<key>tooltip</key>
- <string>Decodes a JSON string to a Lua value preserving SL types</string>
+ <string>Decodes a JSON string to a Lua value, preserving SL types. Raises an error if JSON is invalid.</string>
</map>
<key>lljson.slencode</key>
<map>
@@ -13118,7 +13118,7 @@ Returns true if result is non-zero.</string>
<key>sleep</key>
<real>0.0</real>
<key>tooltip</key>
- <string>Encodes a Lua value as JSON preserving SL types. Use tight to encode more compactly.</string>
+ <string>Encodes a Lua value as JSON, preserving SL types. Use tight to encode more compactly. Raises an error if value contains unsupported types.</string>
</map>
<!-- math library-->
<key>math</key>