1
0
mirror of https://github.com/golang/go synced 2024-11-12 10:00:25 -07:00

expvar: fix name of Var interface

Change-Id: Ibc40237981fdd20316f73f7f6f3dfa918dd0af5d
Reviewed-on: https://go-review.googlesource.com/133658
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Warren Fernandes 2018-09-05 22:35:01 -06:00 committed by Brad Fitzpatrick
parent 262d4f321a
commit 6b7099caa1

View File

@ -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()