diff options
author | kyren <kerriganw@gmail.com> | 2018-02-11 18:17:15 -0500 |
---|---|---|
committer | kyren <kerriganw@gmail.com> | 2018-02-11 18:17:15 -0500 |
commit | c4b3170e2bf4afe700c083d4316d3214cce44d66 (patch) | |
tree | c7a6cb3feb8b7e83d5e988a1bc1c1b15923eb2ae /src | |
parent | 9a45ef45e4ea8d47c2ea51ca0b31f88743f8c22f (diff) | |
download | mlua-c4b3170e2bf4afe700c083d4316d3214cce44d66.zip |
More documentation fixes
Diffstat (limited to 'src')
-rw-r--r-- | src/lua.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -522,7 +522,7 @@ impl Lua { /// Removes a named value in the Lua registry. /// - /// Equivalent to calling [`Lua::set_named_registry_value`] with a value of Nil. + /// Equivalent to calling [`set_named_registry_value`] with a value of Nil. /// /// [`set_named_registry_value`]: #method.set_named_registry_value pub fn unset_named_registry_value<'lua>(&'lua self, name: &str) -> Result<()> { @@ -1147,7 +1147,7 @@ impl<'lua, 'scope> Scope<'lua, 'scope> { /// Create a Lua userdata object from a custom userdata type. /// - /// This is a version of [`Lua::create_userdata`] that creates a callback which expires on scope + /// This is a version of [`Lua::create_userdata`] that creates a userdata which expires on scope /// drop. See [`Lua::scope`] for more details. /// /// [`Lua::create_userdata`]: struct.Lua.html#method.create_userdata |