diff options
author | 2019-02-17 15:31:12 +0700 | |
---|---|---|
committer | 2019-02-17 08:31:12 +0000 | |
commit | 8d09cb243f09704c39609499c4d07f27e3e2e39c (patch) | |
tree | 1b818cbb6258386ebf5088e162012ab15791c969 /plugin/cache/cache.go | |
parent | 871bce3a234bd0bb00f202bc44fd6a058fe667cb (diff) | |
download | coredns-8d09cb243f09704c39609499c4d07f27e3e2e39c.tar.gz coredns-8d09cb243f09704c39609499c4d07f27e3e2e39c.tar.zst coredns-8d09cb243f09704c39609499c4d07f27e3e2e39c.zip |
Fix some typos (#2560)
* Fix some typos
Corect some words for reading more easily
* Update NOERROR response code
NOERROR is a response code so I revert the typo checking for it
Diffstat (limited to 'plugin/cache/cache.go')
-rw-r--r-- | plugin/cache/cache.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/cache/cache.go b/plugin/cache/cache.go index cd0fda505..bc82bb604 100644 --- a/plugin/cache/cache.go +++ b/plugin/cache/cache.go @@ -118,7 +118,7 @@ type ResponseWriter struct { // newPrefetchResponseWriter returns a Cache ResponseWriter to be used in // prefetch requests. It ensures RemoteAddr() can be called even after the -// original connetion has already been closed. +// original connection has already been closed. func newPrefetchResponseWriter(server string, state request.Request, c *Cache) *ResponseWriter { // Resolve the address now, the connection might be already closed when the // actual prefetch request is made. |