aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin Clements <austin@google.com>2016-02-14 23:53:19 -0500
committerRuss Cox <rsc@golang.org>2016-02-16 16:44:53 +0000
commit18aefe9c194dc1a649386def050c1e6a245f9115 (patch)
tree7be2b284ea55223655368109186fc1775cf7a1c8
parent387d5b8cfb085ed8d2a074586a0ee0e6e6cb9820 (diff)
downloadgo-18aefe9c194dc1a649386def050c1e6a245f9115.tar.gz
go-18aefe9c194dc1a649386def050c1e6a245f9115.zip
doc: fix non-possessive "'s"
Currently we use "Section's" as the plural of the debug/elf Section struct. Change this to "Sections" because it's not possessive and doesn't seem to fall in to any special cases were the apostrophe is acceptable. Change-Id: Id5d3abbd748502a67ead3f483182ee7729db94a2 Reviewed-on: https://go-review.googlesource.com/19505 Reviewed-by: Russ Cox <rsc@golang.org>
-rw-r--r--doc/go1.6.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/go1.6.html b/doc/go1.6.html
index 6e3710cbad..4a1e4c1f9a 100644
--- a/doc/go1.6.html
+++ b/doc/go1.6.html
@@ -569,7 +569,7 @@ The <a href="/pkg/debug/elf/"><code>debug/elf</code></a> package
adds support for general compressed ELF sections.
User code needs no updating: the sections are decompressed automatically when read.
However, compressed
-<a href="/pkg/debug/elf/#Section"><code>Section</code></a>'s do not support random access:
+<a href="/pkg/debug/elf/#Section"><code>Sections</code></a> do not support random access:
they have a nil <code>ReaderAt</code> field.
</li>