diff options
author | Eitan Adler <[email protected]> | 2024-04-11 00:31:33 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2024-04-11 09:31:33 +0200 |
commit | bf0b14036471db89c90e21c31cbf2f732ca40ab9 (patch) | |
tree | e811b341cc3344d856dfd33ee41888ae0f28c6e4 /hugolib | |
parent | e9b8bec433238df4ae081528bb347dec7f029fd4 (diff) | |
download | hugo-bf0b14036471db89c90e21c31cbf2f732ca40ab9.tar.gz hugo-bf0b14036471db89c90e21c31cbf2f732ca40ab9.zip |
all: Fix duplicate words in comments
Diffstat (limited to 'hugolib')
-rw-r--r-- | hugolib/content_map_page.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hugolib/content_map_page.go b/hugolib/content_map_page.go index 8682d5d4a..336fe197c 100644 --- a/hugolib/content_map_page.go +++ b/hugolib/content_map_page.go @@ -1092,7 +1092,7 @@ func (h *HugoSites) resolveAndClearStateForIdentities( } } - // Drain the the cache eviction stack. + // Drain the cache eviction stack. evicted := h.Deps.MemCache.DrainEvictedIdentities() if len(evicted) < 200 { changes = append(changes, evicted...) |