fix: typing error in var names

This commit is contained in:
GreasySlug 2024-02-19 23:08:43 +09:00
parent cc21271998
commit 37e0b7832f
2 changed files with 2 additions and 2 deletions

View file

@ -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(

View file

@ -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";