Skip to content

Commit

Permalink
please the spell checker
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Feb 29, 2024
1 parent 1c98b82 commit 6e68dbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pacman/operations/router_compressors/ranged_compressor.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def _merge_range(self, first: int, last: int):
dif = last_point - first_point
power = 1 if dif < 1 else 1 << ((dif - 1).bit_length())

# Find the start range cut-offs
# Find the start range cut-off
low_cut = first_point // power * power
high_cut = low_cut + power

Expand Down

0 comments on commit 6e68dbb

Please sign in to comment.