Skip to content

Commit c82ff05

Browse files
dkegel-fastlydeadprogram
authored andcommitted
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.
1 parent 5368dd2 commit c82ff05

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

misspell.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ implmented,implemented
2222
interrut,interrupt
2323
interupt,interrupt
2424
measuing,measuring
25+
numer of,number of
2526
orignal,original
2627
overrided,overridden
2728
poiners,pointers

src/runtime/runtime_nrf.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ func nanosecondsToTicks(ns int64) timeUnit {
103103
return timeUnit(ns * 64 / 1953125)
104104
}
105105

106-
// Monotonically increasing numer of ticks since start.
106+
// Monotonically increasing number of ticks since start.
107107
func ticks() timeUnit {
108108
// For some ways of capturing the time atomically, see this thread:
109109
// https://www.eevblog.com/forum/microcontrollers/correct-timing-by-timer-overflow-count/msg749617/#msg749617

src/runtime/runtime_nrf52840.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ func nanosecondsToTicks(ns int64) timeUnit {
106106
return timeUnit(ns * 64 / 1953125)
107107
}
108108

109-
// Monotonically increasing numer of ticks since start.
109+
// Monotonically increasing number of ticks since start.
110110
func ticks() timeUnit {
111111
// For some ways of capturing the time atomically, see this thread:
112112
// https://www.eevblog.com/forum/microcontrollers/correct-timing-by-timer-overflow-count/msg749617/#msg749617

0 commit comments

Comments
 (0)