aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2016-04-06 15:17:42 +1000
committerAndrew Gerrand <adg@golang.org>2016-04-06 06:16:51 +0000
commit9b24cf3985d245733ea9dc50411c25f0d1ceae9b (patch)
tree476bbf1e6480b96640404b44e5b1064229e7f2d5
parent3a15becf84a89b118aa71569615e633e4a252d7b (diff)
downloadgolang-id-tour-9b24cf3985d245733ea9dc50411c25f0d1ceae9b.tar.xz
content: fix grammar in nil maps slide
Change-Id: I7f4bf5ad97aed66b59ee9087241a71e3beee40cb Reviewed-on: https://go-review.googlesource.com/21590 Reviewed-by: Rob Pike <r@golang.org>
-rw-r--r--content/moretypes.article2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/moretypes.article b/content/moretypes.article
index 9cac743..a410fb5 100644
--- a/content/moretypes.article
+++ b/content/moretypes.article
@@ -195,7 +195,7 @@ The choice of image is up to you. Interesting functions include `(x+y)/2`, `x*y`
A map maps keys to values.
The zero value of a map is `nil`.
-A `nil` map has no keys, nor can they be added.
+A `nil` map has no keys, nor can keys be added.
The `make` function returns a map of the given type,
initialized and ready for use.