Update code docs

This commit is contained in:
Alex Orlenko 2021-05-03 22:17:34 +01:00
parent af67971e0d
commit 3829b72212
2 changed files with 3 additions and 3 deletions

View file

@ -51,8 +51,8 @@
//!
//! [Lua programming language]: https://www.lua.org/
//! [`Lua`]: struct.Lua.html
//! [executing]: struct.Lua.html#method.exec
//! [evaluating]: struct.Lua.html#method.eval
//! [executing]: struct.Chunk.html#method.exec
//! [evaluating]: struct.Chunk.html#method.eval
//! [globals]: struct.Lua.html#method.globals
//! [`ToLua`]: trait.ToLua.html
//! [`FromLua`]: trait.FromLua.html

View file

@ -57,7 +57,7 @@ pub struct Lua {
_no_ref_unwind_safe: PhantomData<UnsafeCell<()>>,
}
// Data associated with the lua_State.
// Data associated with the Lua.
struct ExtraData {
registered_userdata: HashMap<TypeId, c_int>,
registered_userdata_mt: HashSet<isize>,