aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Yong Tang <yong.tang.github@outlook.com> 2020-09-06 17:57:56 -0700
committerGravatar GitHub <noreply@github.com> 2020-09-06 20:57:56 -0400
commit7b7817004197c6042a7b4c8c3cda1efba37c1866 (patch)
treec09730a58907a8f63f98eef0bc9548814196eae5
parente233f59ee8fa3ea7e3a965ba66241dd65465926a (diff)
downloadcoredns-7b7817004197c6042a7b4c8c3cda1efba37c1866.tar.gz
coredns-7b7817004197c6042a7b4c8c3cda1efba37c1866.tar.zst
coredns-7b7817004197c6042a7b4c8c3cda1efba37c1866.zip
Fix trailing whitespace (#4103)
The latest commit (e233f59) on master branch introduced a trailing whitespace and is causing Travis CI build to fail: https://travis-ci.org/github/coredns/coredns/builds/722988413 This PR fixes the failing test. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
-rw-r--r--core/dnsserver/server.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/dnsserver/server.go b/core/dnsserver/server.go
index 878f515ab..78e1d7ed6 100644
--- a/core/dnsserver/server.go
+++ b/core/dnsserver/server.go
@@ -194,7 +194,7 @@ func (s *Server) Stop() (err error) {
// Address together with Stop() implement caddy.GracefulServer.
func (s *Server) Address() string { return s.Addr }
-// ServeDNS is the entry point for every request to the address that
+// ServeDNS is the entry point for every request to the address that
// is bound to. It acts as a multiplexer for the requests zonename as
// defined in the request so that the correct zone
// (configuration and plugin stack) will handle the request.