misspell.csv: add new misspellings; also check in result of 'make spellfix'.

This commit is contained in:
Dan Kegel
2024-08-14 13:52:51 -07:00
committed by Ron Evans
parent 194396d715
commit 5368dd22c5
12 changed files with 27 additions and 15 deletions
+1 -1
View File
@@ -129,7 +129,7 @@ func nanosecondsToTicks(ns int64) timeUnit {
}
func sleepTicks(d timeUnit) {
// Calcluate milliseconds from ticks (which have a resolution of 100ns),
// Calculate milliseconds from ticks (which have a resolution of 100ns),
// rounding up.
milliseconds := int64(d+9_999) / 10_000
for milliseconds != 0 {