Fix 'numer of', since 'NUMER' by itself is valid abbrev for numerator.

Oddly, misspell was not able to detect this one, even though in
theory it allows detecting multiword typos, so the fix was done by
hand.
This commit is contained in:
Dan Kegel
2024-08-14 14:00:07 -07:00
committed by Ron Evans
parent 5368dd22c5
commit c82ff057f5
3 changed files with 3 additions and 2 deletions
+1
View File
@@ -22,6 +22,7 @@ implmented,implemented
interrut,interrupt
interupt,interrupt
measuing,measuring
numer of,number of
orignal,original
overrided,overridden
poiners,pointers
1 acces access
22 interrut interrupt
23 interupt interrupt
24 measuing measuring
25 numer of number of
26 orignal original
27 overrided overridden
28 poiners pointers
+1 -1
View File
@@ -103,7 +103,7 @@ func nanosecondsToTicks(ns int64) timeUnit {
return timeUnit(ns * 64 / 1953125)
}
// Monotonically increasing numer of ticks since start.
// Monotonically increasing number of ticks since start.
func ticks() timeUnit {
// For some ways of capturing the time atomically, see this thread:
// https://www.eevblog.com/forum/microcontrollers/correct-timing-by-timer-overflow-count/msg749617/#msg749617
+1 -1
View File
@@ -106,7 +106,7 @@ func nanosecondsToTicks(ns int64) timeUnit {
return timeUnit(ns * 64 / 1953125)
}
// Monotonically increasing numer of ticks since start.
// Monotonically increasing number of ticks since start.
func ticks() timeUnit {
// For some ways of capturing the time atomically, see this thread:
// https://www.eevblog.com/forum/microcontrollers/correct-timing-by-timer-overflow-count/msg749617/#msg749617