summaryrefslogtreecommitdiff
path: root/src/thread.rs
diff options
context:
space:
mode:
authorAlex Orlenko <zxteam@protonmail.com>2021-11-14 23:27:20 +0000
committerAlex Orlenko <zxteam@protonmail.com>2021-11-14 23:27:20 +0000
commit19bd254e1e35ee79276b2d2c90aee9cc910dc99d (patch)
tree5b63c878a6f9e22b8c2be3c6d0a38677f2d0ceaa /src/thread.rs
parent50f20e0c2c4195b3d90fe456d24845a99b532785 (diff)
downloadmlua-19bd254e1e35ee79276b2d2c90aee9cc910dc99d.zip
Update comments
Diffstat (limited to 'src/thread.rs')
-rw-r--r--src/thread.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread.rs b/src/thread.rs
index 19db1f8..2f2297b 100644
--- a/src/thread.rs
+++ b/src/thread.rs
@@ -137,7 +137,7 @@ impl<'lua> Thread<'lua> {
return Err(pop_error(thread_state, ret));
}
- let mut results = args; // Recycle MultiValue container
+ let mut results = args; // Reuse MultiValue container
check_stack(lua.state, nresults + 2)?; // 2 is extra for `lua.pop_value()` below
ffi::lua_xmove(thread_state, lua.state, nresults);