From 45a29884717e84c9dff988ce0a27d68a1578a4f7 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 14 Jul 2014 21:56:34 -0700 Subject: [PATCH] fmt --- flatmap/map.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flatmap/map.go b/flatmap/map.go index 2bc8c761e..46b72c401 100644 --- a/flatmap/map.go +++ b/flatmap/map.go @@ -13,7 +13,7 @@ import ( type Map map[string]string // Contains returns true if the map contains the given key. -func (m Map) Contains (key string) bool { +func (m Map) Contains(key string) bool { for _, k := range m.Keys() { if k == key { return true