aboutsummaryrefslogtreecommitdiff
path: root/doc/go_spec.html
diff options
context:
space:
mode:
authorcui fliter <imcusg@gmail.com>2024-02-29 16:50:23 +0800
committerGopher Robot <gobot@golang.org>2024-03-04 15:54:42 +0000
commite39480f4fb5e7314daef012b58cf05e3c9ceea1a (patch)
tree003eec62c2a9e06edc4aeda5754ff6ecf6192292 /doc/go_spec.html
parenta5f8ae9f6566946529a51b69d2f3f0689abc00eb (diff)
downloadgo-e39480f4fb5e7314daef012b58cf05e3c9ceea1a.tar.gz
go-e39480f4fb5e7314daef012b58cf05e3c9ceea1a.zip
doc: close HTML tags
Add unclosed HTML tags and remove redundant </a> tags. Change-Id: I3fffbcfd640001c9cc4f6085150344daa0c4369b Reviewed-on: https://go-review.googlesource.com/c/go/+/568155 Reviewed-by: Bryan Mills <bcmills@google.com> Run-TryBot: shuang cui <imcusg@gmail.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Diffstat (limited to 'doc/go_spec.html')
-rw-r--r--doc/go_spec.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/go_spec.html b/doc/go_spec.html
index 7b9dd3862a..8f48f7444b 100644
--- a/doc/go_spec.html
+++ b/doc/go_spec.html
@@ -1682,6 +1682,7 @@ maps grow to accommodate the number of items
stored in them, with the exception of <code>nil</code> maps.
A <code>nil</code> map is equivalent to an empty map except that no elements
may be added.
+</p>
<h3 id="Channel_types">Channel types</h3>
@@ -7300,7 +7301,7 @@ The number of elements copied is the minimum of
<code>len(src)</code> and <code>len(dst)</code>.
As a special case, if the destination's core type is <code>[]byte</code>,
<code>copy</code> also accepts a source argument with core type
-</a> <a href="#Core_types"><code>bytestring</code></a>.
+<a href="#Core_types"><code>bytestring</code></a>.
This form copies the bytes from the byte slice or string into the byte slice.
</p>