fix spelling in comment to satisfy linter

this is ridiculous; since when do linters apply spellchecking on comments???
This commit is contained in:
vyzo 2020-10-29 19:13:45 +02:00
parent 47830efbf5
commit 57234d8ef3

View File

@ -253,7 +253,7 @@ func (sm *syncManager) handleWorkerStatus(status workerStatus) {
} else { } else {
// add to the recently synced buffer // add to the recently synced buffer
sm.recent.Push(ws.ts) sm.recent.Push(ws.ts)
// if we are still in intial sync and this was fast enough, mark the end of the initial sync // if we are still in initial sync and this was fast enough, mark the end of the initial sync
if !sm.initialSyncDone && ws.dt < InitialSyncTimeThreshold { if !sm.initialSyncDone && ws.dt < InitialSyncTimeThreshold {
sm.initialSyncDone = true sm.initialSyncDone = true
} }