From add547b3567f1a799480fcf94016f0720bead3bf Mon Sep 17 00:00:00 2001 From: kyren Date: Tue, 4 Sep 2018 19:09:09 -0400 Subject: [PATCH] comment terminology... fix? --- src/lua.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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>,