aboutsummaryrefslogtreecommitdiffhomepage
path: root/identity
diff options
context:
space:
mode:
authorChristian Oliff <[email protected]>2024-03-16 01:25:52 +0900
committerGitHub <[email protected]>2024-03-15 17:25:52 +0100
commit78178d0c2a10e7793a41f8f66b3a4a6e4f70ef7e (patch)
tree21d0d310785676b914035e5930e987540c494d8d /identity
parent68d92ef9ddbb63340d71af0cb30e6fb7c4912c65 (diff)
downloadhugo-78178d0c2a10e7793a41f8f66b3a4a6e4f70ef7e.tar.gz
hugo-78178d0c2a10e7793a41f8f66b3a4a6e4f70ef7e.zip
all: Typo fixes
Diffstat (limited to 'identity')
-rw-r--r--identity/identity.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/identity/identity.go b/identity/identity.go
index c799759df..f924f335c 100644
--- a/identity/identity.go
+++ b/identity/identity.go
@@ -355,7 +355,7 @@ func (im *identityManager) String() string {
}
func (im *identityManager) forEeachIdentity(fn func(id Identity) bool) bool {
- // The absense of a lock here is debliberate. This is currently opnly used on server reloads
+ // The absence of a lock here is deliberate. This is currently only used on server reloads
// in a single-threaded context.
for id := range im.ids {
if fn(id) {