]> Cypherpunks repositories - gostls13.git/commitdiff
doc: Fixed missing dot in effective_go.html
authorAndrii Soldatenko <andrii.soldatenko@gmail.com>
Sun, 3 Sep 2017 14:23:39 +0000 (17:23 +0300)
committerEmmanuel Odeke <emm.odeke@gmail.com>
Sun, 3 Sep 2017 21:23:06 +0000 (21:23 +0000)
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 <emm.odeke@gmail.com>
doc/effective_go.html

index bc70b0c8e3fc1f4fc9872e38e3668adeafd10de4..731959e408a9012261b6985740a834da3bb53db4 100644 (file)
@@ -1521,7 +1521,7 @@ for i := range picture {
 <p>
 Maps are a convenient and powerful built-in data structure that associate
 values of one type (the <em>key</em>) with values of another type
-(the <em>element</em> or <em>value</em>)
+(the <em>element</em> or <em>value</em>).
 The key can be of any type for which the equality operator is defined,
 such as integers,
 floating point and complex numbers,