Small typo fix

This commit is contained in:
kyren 2017-07-28 10:57:19 -04:00 committed by GitHub
parent ad6cf21921
commit ac37b2a0d4
1 changed files with 1 additions and 1 deletions

View File

@ -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),