diff --git a/zone.go b/zone.go index e292ae6b..d376ae5b 100644 --- a/zone.go +++ b/zone.go @@ -198,7 +198,7 @@ func (z *Zone) Lock() { z.mutex.Lock() } // Unlock unlocks the zone z for writing. func (z *Zone) Unlock() { z.mutex.Unlock() } -// Insert inserts an RR into the zone. There is no check for duplicate data, although +// Insert inserts the RR r into the zone. There is no check for duplicate data, although // Remove will remove all duplicates. func (z *Zone) Insert(r RR) error { if !z.isSubDomain(r.Header().Name) {