From 6b8a4240e284bcdd790e20c86c1f2abf29ea2675 Mon Sep 17 00:00:00 2001 From: kyren Date: Fri, 30 Jun 2017 15:17:53 -0400 Subject: [PATCH] format fix, fixes rustfmt warning --- src/util.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util.rs b/src/util.rs index ebab86f..c1a8008 100644 --- a/src/util.rs +++ b/src/util.rs @@ -237,8 +237,8 @@ pub unsafe fn handle_error(state: *mut ffi::lua_State, err: c_int) -> LuaResult< Err(match err { ffi::LUA_ERRRUN => LuaError::RuntimeError(err_string), ffi::LUA_ERRSYNTAX => { - // This seems terrible, but as far as I can tell, this is exactly what the stock lua - // repl does. + // This seems terrible, but as far as I can tell, this is exactly what the stock + // lua repl does. if err_string.ends_with("") { LuaError::IncompleteStatement(err_string) } else {