Skip to content

Commit 2634ca0

Browse files
authored
Merge pull request #9 from xgpt/patch-1
typo
2 parents 6d408be + 08bd6c1 commit 2634ca0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_ticks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,6 @@ def ticks_diff(ticks1: int, ticks2: int) -> int:
134134

135135

136136
def ticks_less(ticks1: int, ticks2: int) -> bool:
137-
"""Return true iff ticks1 is less than ticks2,
137+
"""Return true if ticks1 is before ticks2 and false otherwise,
138138
assuming that they are within 2**28 ticks"""
139139
return ticks_diff(ticks1, ticks2) < 0

0 commit comments

Comments
 (0)