From 3f292d87ed34b08a12c7328d1c2cae02e0624ff9 Mon Sep 17 00:00:00 2001 From: markturansky Date: Fri, 22 Jan 2016 00:15:07 -0500 Subject: [PATCH] fixed spelling typo --- pkg/util/keymutex/keymutex.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/util/keymutex/keymutex.go b/pkg/util/keymutex/keymutex.go index bb01a019bae..7e644c143b6 100644 --- a/pkg/util/keymutex/keymutex.go +++ b/pkg/util/keymutex/keymutex.go @@ -22,7 +22,7 @@ import ( "sync" ) -// KeyMutex is a thread-safe interface for aquiring locks on arbitrary strings. +// KeyMutex is a thread-safe interface for acquiring locks on arbitrary strings. type KeyMutex interface { // Aquires a lock associated with the specified ID, creates the lock if one doesn't already exist. LockKey(id string)