From e4fde5b044b5637bf68df63e02186a72060642b4 Mon Sep 17 00:00:00 2001 From: Xiang Li Date: Wed, 31 Jul 2013 14:55:03 -0700 Subject: [PATCH] fix typo --- store/keywords.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/keywords.go b/store/keywords.go index 2923090d2..bfb301763 100644 --- a/store/keywords.go +++ b/store/keywords.go @@ -13,7 +13,7 @@ var keywords = map[string]bool{ "/machines": true, } -// CheckKeyWord will check if the key contains the keyword. +// CheckKeyword will check if the key contains the keyword. // For now, we only check for prefix. func CheckKeyword(key string) bool { key = path.Clean("/" + key)