From 53b001cfce5ad196766b10ff2b6a321bea8db5c8 Mon Sep 17 00:00:00 2001 From: kyren Date: Thu, 25 May 2017 12:12:12 -0400 Subject: [PATCH] doc update again to test submodules --- src/lua.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lua.rs b/src/lua.rs index 7b6cf19..3464e60 100644 --- a/src/lua.rs +++ b/src/lua.rs @@ -695,6 +695,8 @@ impl Lua { } } + /// Evaluate the given expression or statement inside this Lua state, and if it is an + /// expression or a statement with return, this returns the value. pub fn eval<'lua, R: FromLuaMulti<'lua>>(&'lua self, source: &str) -> LuaResult { unsafe { stack_guard(self.state, 0, || {