From ac37b2a0d432170b309e3b10bde1a2c0975a8625 Mon Sep 17 00:00:00 2001 From: kyren Date: Fri, 28 Jul 2017 10:57:19 -0400 Subject: [PATCH] Small typo fix --- src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/error.rs b/src/error.rs index 2fcb838..7e3161b 100644 --- a/src/error.rs +++ b/src/error.rs @@ -12,7 +12,7 @@ pub enum Error { IncompleteStatement(String), /// Lua runtime error, aka `LUA_ERRRUN`. /// - /// The Lua VM returns this error when a builtin operation is performed on incompatible typed. + /// The Lua VM returns this error when a builtin operation is performed on incompatible types. /// Among other things, this includes invoking operators on wrong types (such as calling or /// indexing a `nil` value). RuntimeError(String),