Consistent naming of methods.

This commit is contained in:
Stephen Chung
2020-05-13 20:22:05 +08:00
parent 5a02548ebc
commit 9d8d074940
8 changed files with 18 additions and 34 deletions

View File

@@ -123,7 +123,7 @@ fn call_fn(
global_module
.get_fn(hash)
.or_else(|| packages.get_function(hash))
.or_else(|| packages.get_fn(hash))
.map(|func| func.call(args, pos))
.transpose()
}