typo fixes (#3169)

* spelling fixes

* its/it's
This commit is contained in:
Chris O'Haver
2019-08-21 16:08:55 -04:00
committed by GitHub
parent 6881d6d585
commit 3f47fc8ba4
28 changed files with 32 additions and 33 deletions

View File

@@ -7,7 +7,7 @@ import (
"github.com/coredns/coredns/plugin/file"
)
// Zones maps zone names to a *Zone. This keep track of what we zones we have loaded at
// Zones maps zone names to a *Zone. This keeps track of what zones we have loaded at
// any one time.
type Zones struct {
Z map[string]*file.Zone // A map mapping zone (origin) to the Zone's data.
@@ -56,7 +56,7 @@ func (z *Zones) Add(zo *file.Zone, name string) {
z.Unlock()
}
// Remove removes the zone named name from z. It also stop the zone's reload goroutine.
// Remove removes the zone named name from z. It also stops the zone's reload goroutine.
func (z *Zones) Remove(name string) {
z.Lock()