diff --git a/src/lua.rs b/src/lua.rs index b2f8e49..f855f71 100644 --- a/src/lua.rs +++ b/src/lua.rs @@ -283,8 +283,8 @@ impl<'lua> LuaTable<'lua> { /// Returns the result of the Lua `#` operator. /// - /// This might invoke the `__len` metamethod. Use the `raw_length` method if that is not - /// desired. + /// This might invoke the `__len` metamethod. Use the `raw_len` method if + /// that is not desired. pub fn len(&self) -> LuaResult { let lua = self.0.lua; unsafe {