From 1c6c79615f7415c4625002cb4881013ade18b9c4 Mon Sep 17 00:00:00 2001 From: xiaoxiangxianzi <164908047+xiaoxiangxianzi@users.noreply.github.com> Date: Sat, 30 Mar 2024 02:03:11 +0800 Subject: [PATCH] chore: fix some comments (#1547) Signed-off-by: xiaoxiangxianzi --- msg.go | 2 +- scan.go | 2 +- xfr.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/msg.go b/msg.go index 8294d0395..5fa7f9e83 100644 --- a/msg.go +++ b/msg.go @@ -714,7 +714,7 @@ func (h *MsgHdr) String() string { return s } -// Pack packs a Msg: it is converted to to wire format. +// Pack packs a Msg: it is converted to wire format. // If the dns.Compress is true the message will be in compressed wire format. func (dns *Msg) Pack() (msg []byte, err error) { return dns.PackBuffer(nil) diff --git a/scan.go b/scan.go index 315bf8a6f..e26e8027a 100644 --- a/scan.go +++ b/scan.go @@ -1283,7 +1283,7 @@ func stringToCm(token string) (e, m uint8, ok bool) { cmeters *= 10 } } - // This slighly ugly condition will allow omitting the 'meter' part, like .01 (meaning 0.01m = 1cm). + // This slightly ugly condition will allow omitting the 'meter' part, like .01 (meaning 0.01m = 1cm). if !hasCM || mStr != "" { meters, err = strconv.Atoi(mStr) // RFC1876 states the max value is 90000000.00. The latter two conditions enforce it. diff --git a/xfr.go b/xfr.go index 91080109e..2187c456d 100644 --- a/xfr.go +++ b/xfr.go @@ -188,7 +188,7 @@ func (t *Transfer) inIxfr(q *Msg, c chan *Envelope) { if v, ok := rr.(*SOA); ok { if v.Serial == serial { n++ - // quit if it's a full axfr or the the servers' SOA is repeated the third time + // quit if it's a full axfr or the servers' SOA is repeated the third time if axfr && n == 2 || n == 3 { c <- &Envelope{in.Answer, nil} return