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 programming language]: https://www.lua.org/
//! [`Lua`]: struct.Lua.html //! [`Lua`]: struct.Lua.html
//! [executing]: struct.Lua.html#method.exec //! [executing]: struct.Chunk.html#method.exec
//! [evaluating]: struct.Lua.html#method.eval //! [evaluating]: struct.Chunk.html#method.eval
//! [globals]: struct.Lua.html#method.globals //! [globals]: struct.Lua.html#method.globals
//! [`ToLua`]: trait.ToLua.html //! [`ToLua`]: trait.ToLua.html
//! [`FromLua`]: trait.FromLua.html //! [`FromLua`]: trait.FromLua.html

View File

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