From: Andrii Soldatenko Date: Sun, 3 Sep 2017 14:23:39 +0000 (+0300) Subject: doc: Fixed missing dot in effective_go.html X-Git-Tag: go1.10beta1~1226 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=53d24f76fb129fe682cc92cc99c69998af4212b2;p=gostls13.git doc: Fixed missing dot in effective_go.html First sentence of https://golang.org/doc/effective_go.html#maps dot is missing. Change-Id: Ic93b407945a6ad24a73ae9f7b6076ac9619871db Reviewed-on: https://go-review.googlesource.com/61020 Reviewed-by: Emmanuel Odeke --- diff --git a/doc/effective_go.html b/doc/effective_go.html index bc70b0c8e3..731959e408 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -1521,7 +1521,7 @@ for i := range picture {

Maps are a convenient and powerful built-in data structure that associate values of one type (the key) with values of another type -(the element or value) +(the element or value). The key can be of any type for which the equality operator is defined, such as integers, floating point and complex numbers,