all: Fix typos found by codespell (#8833)

This commit is contained in:
Dimitri Papadopoulos Orfanos
2023-03-21 08:07:28 +01:00
committed by GitHub
parent bc371eacf6
commit 526e21ae26
14 changed files with 24 additions and 24 deletions
+1 -1
View File
@@ -1368,7 +1368,7 @@ func startWrapper(wrapper Wrapper) *testWrapper {
}
func TestInternalVersioningConfiguration(t *testing.T) {
// Verify that the versioning configuration XML seralizes to something
// Verify that the versioning configuration XML serializes to something
// reasonable.
cfg := New(device1)
+2 -2
View File
@@ -328,8 +328,8 @@ func (w *wrapper) notifyListeners(from, to Configuration) Waiter {
wg := sync.NewWaitGroup()
wg.Add(len(w.subs))
for _, sub := range w.subs {
go func(commiter Committer) {
w.notifyListener(commiter, from, to)
go func(committer Committer) {
w.notifyListener(committer, from, to)
wg.Done()
}(sub)
}