From: Warren Fernandes Date: Thu, 6 Sep 2018 04:35:01 +0000 (-0600) Subject: expvar: fix name of Var interface X-Git-Tag: go1.12beta1~1148 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=6b7099caa17e50410821f4a66ebb5c48717ad3c7;p=gostls13.git expvar: fix name of Var interface Change-Id: Ibc40237981fdd20316f73f7f6f3dfa918dd0af5d Reviewed-on: https://go-review.googlesource.com/133658 Reviewed-by: Brad Fitzpatrick --- 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()