diff --git a/src/lua.rs b/src/lua.rs index 86aa1c2..15abb91 100644 --- a/src/lua.rs +++ b/src/lua.rs @@ -829,7 +829,8 @@ impl Lua { // // Box Fn(&'lua Lua, MultiValue<'lua>) -> Result>)> // - // So we instead use an outer lifetime, which without the 'static requirement would be unsafe. + // So we instead use a caller provided lifetime, which without the 'static requirement would be + // unsafe. pub(crate) fn create_callback<'lua, 'callback>( &'lua self, func: Callback<'callback, 'static>,