aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/metrics/value.go
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2021-02-07 15:25:39 -0800
committerIan Lance Taylor <iant@golang.org>2021-02-09 02:00:01 +0000
commitc9d6f45fec19a9cb66ddd89d61bfa982f5bf4afe (patch)
treebe95225de7c3175a7651c3b9e6b298ca91a5c746 /src/runtime/metrics/value.go
parentcea4e21b525ad6b465f62741680eaa0a44e9cc3e (diff)
downloadgo-c9d6f45fec19a9cb66ddd89d61bfa982f5bf4afe.tar.xz
runtime/metrics: fix a couple of documentation typpos
Fixes #44150 Change-Id: Ibe5bfba01491dd8c2f0696fab40a1673230d76e9 Reviewed-on: https://go-review.googlesource.com/c/go/+/290349 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Michael Knyszek <mknyszek@google.com>
Diffstat (limited to 'src/runtime/metrics/value.go')
-rw-r--r--src/runtime/metrics/value.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/metrics/value.go b/src/runtime/metrics/value.go
index 61e8a192a3..ed9a33d87c 100644
--- a/src/runtime/metrics/value.go
+++ b/src/runtime/metrics/value.go
@@ -33,7 +33,7 @@ type Value struct {
pointer unsafe.Pointer // contains non-scalar values.
}
-// Kind returns the a tag representing the kind of value this is.
+// Kind returns the tag representing the kind of value this is.
func (v Value) Kind() ValueKind {
return v.kind
}