diff --git a/src/lua.rs b/src/lua.rs index 7e8d896..148c3d9 100644 --- a/src/lua.rs +++ b/src/lua.rs @@ -501,14 +501,6 @@ impl<'lua> Function<'lua> { /// Returns a function that, when called with no arguments, calls `self`, passing `args` as /// arguments. /// - /// This is equivalent to this Lua code: - /// - /// ```notrust - /// function bind(f, ...) - /// return function() f(...) end - /// end - /// ``` - /// /// # Example /// /// ```