From d4c1a81a038642e2d990f6dd84bed8c05c4568dc Mon Sep 17 00:00:00 2001
From: Nicolas Kaiser <nikai@nikai.net>
Date: Fri, 23 Nov 2012 16:41:40 +0100
Subject: [PATCH] Fix misspelled "indicates"

---
 examples/maps/maps.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/maps/maps.go b/examples/maps/maps.go
index 4885372..ae77f97 100644
--- a/examples/maps/maps.go
+++ b/examples/maps/maps.go
@@ -34,7 +34,7 @@ func main() {
     fmt.Println("map:", m)
 
     // The optional second return value when getting a
-    // value from a map indiciates if the key was present
+    // value from a map indicates if the key was present
     // in the map. This can be used to disambiguate
     // between missing keys and keys with zero values
     // like `0` or `""`.