Skip to content

Commit

Permalink
Fix spelling mistakes introduced by human
Browse files Browse the repository at this point in the history
Co-authored-by: Siu Kwan Lam <[email protected]>
  • Loading branch information
esc and sklam authored Feb 3, 2025
1 parent d232c72 commit f2109c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions numba_rvsdg/core/datastructures/ast_transforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ def handle_if(self, node: ast.If) -> None:
enif_index = self.block_index + 2
self.block_index += 3

# Desugar test expression if needed, may modify currect_block.
# Desugar test expression if needed, may modify current_block.
test_name = self.handle_expression(node.test)
# Emit comparison value to current/header block.
self.current_block.instructions.append(test_name)
Expand Down Expand Up @@ -542,7 +542,7 @@ def handle_while(self, node: ast.While) -> None:
# And create new header block
self.add_block(head_index)

# Desugar test expression if needed, may modify currect_block.
# Desugar test expression if needed, may modify current_block.
test_name = self.handle_expression(node.test)
# Emit comparison expression into header.
self.current_block.instructions.append(test_name)
Expand Down

0 comments on commit f2109c5

Please sign in to comment.