mirror of
https://github.com/erg-lang/erg.git
synced 2025-08-04 10:49:54 +00:00
fix: typing error in var names
This commit is contained in:
parent
cc21271998
commit
37e0b7832f
2 changed files with 2 additions and 2 deletions
|
@ -1133,7 +1133,7 @@ impl Context {
|
|||
op_t,
|
||||
Const,
|
||||
Visibility::BUILTIN_PRIVATE,
|
||||
Some(OP_MUL),
|
||||
Some(OP_NEG),
|
||||
);
|
||||
let invert_t = func1(Int, Int);
|
||||
self.register_builtin_py_impl(
|
||||
|
|
|
@ -217,7 +217,7 @@ const FUNC_OR: &str = "or_";
|
|||
const FUNC_MOD: &str = "mod";
|
||||
const FUNC_MUL: &str = "mul";
|
||||
const FUNC_SUB: &str = "sub";
|
||||
const FUNC_TRUEDIV: &str = "truedive";
|
||||
const FUNC_TRUEDIV: &str = "truediv";
|
||||
const FUNC_FLOORDIV: &str = "floordiv";
|
||||
const FUNC_IS_NOT: &str = "is_not";
|
||||
const NONE_TYPE: &str = "NoneType";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue