Skip to content

Commit 770f25b

Browse files
committed
Fix typo
1 parent 69947be commit 770f25b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypyc/irbuild/ll_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2610,7 +2610,7 @@ def _translate_fast_optional_eq_cmp(
26102610
else:
26112611
r_none = BasicBlock()
26122612
r_not_none = BasicBlock()
2613-
# Fast path: eight value is None?
2613+
# Fast path: right value is None?
26142614
cmp = self.add(ComparisonOp(rreg, self.none_object(), ComparisonOp.EQ, line))
26152615
self.add(Branch(cmp, r_none, r_not_none, Branch.BOOL))
26162616
self.activate_block(r_none)

0 commit comments

Comments
 (0)