From 3a4371ad21c545edb2c876714b8e8666bff9144c Mon Sep 17 00:00:00 2001 From: Wuxiang Date: Mon, 29 Oct 2018 19:24:17 +0800 Subject: [PATCH] fix a typo --- app/dns/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/dns/server.go b/app/dns/server.go index 68a7c390..70de0e0b 100644 --- a/app/dns/server.go +++ b/app/dns/server.go @@ -81,7 +81,7 @@ func New(ctx context.Context, config *Config) (*Server, error) { for _, domain := range ns.PrioritizedDomain { matcher, err := toStrMatcher(domain.Type, domain.Domain) if err != nil { - return nil, newError("failed to create proritized domain").Base(err).AtWarning() + return nil, newError("failed to create prioritized domain").Base(err).AtWarning() } midx := domainMatcher.Add(matcher) domainIndexMap[midx] = uint32(idx)