summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorkyren <kerriganw@gmail.com>2018-08-05 09:51:32 -0400
committerkyren <kerriganw@gmail.com>2018-08-05 09:51:32 -0400
commite6688e1db293e24dafc65ca28efd2fca59799941 (patch)
tree15d98266dcc5a3cdcd1cd9e28c74f53aec1286d1 /README.md
parent73306d2286457ff50cc81727522ad82cb6b6c32a (diff)
downloadmlua-e6688e1db293e24dafc65ca28efd2fca59799941.zip
very small doc fixes
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 4ec5e49..b687c0a 100644
--- a/README.md
+++ b/README.md
@@ -116,7 +116,7 @@ If you encounter them, a bug report would be very welcome:
`cfg!(debug_assertions)` is true, Lua is built with the `LUA_USE_APICHECK`
define set. Any abort caused by this internal Lua API checking is
*absolutely* a bug, particularly because without `LUA_USE_APICHECK` it would
- generally be unsafe.
+ generally cause UB.
* Lua C API errors are handled by lonjmp. *ALL* instances where the Lua C API
would longjmp should be protected from Rust, except in internal callbacks
where this is intentional. If you detect that `rlua` is triggering a
@@ -128,4 +128,4 @@ If you encounter them, a bug report would be very welcome:
`rlua` instances are supposed to remain fully usable in the face of user
triggered panics. This guarantee does NOT extend to panics marked with
"rlua internal error" simply because that is already indicative of a
- separate bug, but it may be true in many cases anyway.
+ separate bug.