diff options
author | Success Go <gaodacheng@protonmail.ch> | 2020-02-28 10:30:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-27 19:30:48 -0700 |
commit | ca5c6798806546180994ab7c08e60a5ffeb69394 (patch) | |
tree | 8ba21a48ed0566f0a0c9bfa4324067b2cab5cda3 /modules/caddyhttp/templates | |
parent | e2d41ee7619bf88d9cd01ac92911fda8625bd02d (diff) |
Fix typos (#3087)
* Fix typo
* Fix typo, thanks for Spell Checker under VS Code
Diffstat (limited to 'modules/caddyhttp/templates')
-rw-r--r-- | modules/caddyhttp/templates/templates.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/caddyhttp/templates/templates.go b/modules/caddyhttp/templates/templates.go index 94764bf..cf0908d 100644 --- a/modules/caddyhttp/templates/templates.go +++ b/modules/caddyhttp/templates/templates.go @@ -254,7 +254,7 @@ func (t *Templates) ServeHTTP(w http.ResponseWriter, r *http.Request, next caddy rec.Header().Del("Accept-Ranges") // we don't know ranges for dynamically-created content rec.Header().Del("Last-Modified") // useless for dynamic content since it's always changing - // we don't know a way to guickly generate etag for dynamic content, + // we don't know a way to quickly generate etag for dynamic content, // and weak etags still cause browsers to rely on it even after a // refresh, so disable them until we find a better way to do this rec.Header().Del("Etag") |