Make RhaiResult internal.

This commit is contained in:
Stephen Chung
2021-03-03 22:49:29 +08:00
parent dfc1ea692f
commit ed568a9395
6 changed files with 11 additions and 7 deletions

View File

@@ -88,7 +88,7 @@ mod token;
mod r#unsafe;
mod utils;
pub type RhaiResult = Result<Dynamic, stdlib::boxed::Box<EvalAltResult>>;
type RhaiResult = Result<Dynamic, stdlib::boxed::Box<EvalAltResult>>;
/// The system integer type. It is defined as [`i64`].
///