Fix typos.

This commit is contained in:
Stephen Chung 2020-08-06 10:31:32 +08:00
parent 26c5b10ef7
commit 4465a44673
2 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ only_i32 = [] # set INT=i32 (useful for 32-bit systems)
only_i64 = [] # set INT=i64 (default) and disable support for all other integer types only_i64 = [] # set INT=i64 (default) and disable support for all other integer types
no_index = [] # no arrays and indexing no_index = [] # no arrays and indexing
no_object = [] # no custom objects no_object = [] # no custom objects
no_function = [ "no_closure "] # no script-defined functions (meaning no closures) no_function = [ "no_closure" ] # no script-defined functions (meaning no closures)
no_closure = [] # no automatic sharing and capture of anonymous functions to external variables no_closure = [] # no automatic sharing and capture of anonymous functions to external variables
no_module = [] # no modules no_module = [] # no modules
internals = [] # expose internal data structures internals = [] # expose internal data structures

View File

@ -228,9 +228,9 @@ impl Engine {
// Run external function // Run external function
let result = if func.is_plugin_fn() { let result = if func.is_plugin_fn() {
func.get_plugin_fn().call(args, Position::none())? func.get_plugin_fn().call(args, Position::none())
} else { } else {
func.get_native_fn()(self, lib, args)? func.get_native_fn()(self, lib, args)
}; };
// Restore the original reference // Restore the original reference