summaryrefslogtreecommitdiffstats
path: root/cache
diff options
context:
space:
mode:
authorcoliff <christianoliff@pm.me>2025-02-26 20:35:12 +0900
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2025-02-26 15:10:28 +0100
commit4094a1e12c593ebaffe5bf28a1cd0a12330b1a60 (patch)
tree7a3590e6b87bbaf3574bc94dbf5a2c80df6cf7a6 /cache
parent6927e6f04826b5fbf28de0d042f205e107628b3f (diff)
downloadhugo-4094a1e12c593ebaffe5bf28a1cd0a12330b1a60.tar.gz
hugo-4094a1e12c593ebaffe5bf28a1cd0a12330b1a60.zip
all: Typo fixes
Diffstat (limited to 'cache')
-rw-r--r--cache/httpcache/httpcache.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cache/httpcache/httpcache.go b/cache/httpcache/httpcache.go
index 7fa76e5c3..2e8d9b8b4 100644
--- a/cache/httpcache/httpcache.go
+++ b/cache/httpcache/httpcache.go
@@ -42,7 +42,7 @@ var DefaultConfig = Config{
// Config holds the configuration for the HTTP cache.
type Config struct {
- // Configures the HTTP cache behaviour (RFC 9111).
+ // Configures the HTTP cache behavior (RFC 9111).
// When this is not enabled for a resource, Hugo will go straight to the file cache.
Cache Cache
@@ -52,7 +52,7 @@ type Config struct {
}
type Cache struct {
- // Enable HTTP cache behaviour (RFC 9111) for these rsources.
+ // Enable HTTP cache behavior (RFC 9111) for these resources.
For GlobMatcher
}