Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Commit

Permalink
config: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
marsninja committed Sep 5, 2024
1 parent ad17cc4 commit a69c8a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jaclang/compiler/passes/main/registry_pass.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class RegistryPass(Pass):

def enter_module(self, node: ast.Module) -> None:
"""Create registry for each module."""
if settings.diable_mtllm:
if settings.disable_mtllm:
self.terminate()
return None
node.registry = SemRegistry()
Expand Down
2 changes: 1 addition & 1 deletion jaclang/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Settings:
print_py_raised_ast: bool = False

# Compiler configuration
diable_mtllm: bool = False
disable_mtllm: bool = False
ignore_test_annex: bool = False

# Formatter configuration
Expand Down

0 comments on commit a69c8a7

Please sign in to comment.