From 6b7099caa17e50410821f4a66ebb5c48717ad3c7 Mon Sep 17 00:00:00 2001 From: Warren Fernandes Date: Wed, 5 Sep 2018 22:35:01 -0600 Subject: [PATCH] expvar: fix name of Var interface Change-Id: Ibc40237981fdd20316f73f7f6f3dfa918dd0af5d Reviewed-on: https://go-review.googlesource.com/133658 Reviewed-by: Brad Fitzpatrick --- src/expvar/expvar.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/expvar/expvar.go b/src/expvar/expvar.go index 174873a7d4..b7928aab17 100644 --- a/src/expvar/expvar.go +++ b/src/expvar/expvar.go @@ -221,7 +221,7 @@ func (v *String) Value() string { return p } -// String implements the Val interface. To get the unquoted string +// String implements the Var interface. To get the unquoted string // use Value. func (v *String) String() string { s := v.Value() -- 2.50.0