From: Dean Prichard Date: Tue, 9 Mar 2010 23:00:10 +0000 (+1100) Subject: reflect: typo in comment X-Git-Tag: weekly.2010-03-15~24 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=75e5ece03a644a7587a0602d3a10e5a15aeb6227;p=gostls13.git reflect: typo in comment R=golang-dev, adg CC=golang-dev https://golang.org/cl/369041 --- diff --git a/src/pkg/reflect/value.go b/src/pkg/reflect/value.go index 32accddf50..4134da67ee 100644 --- a/src/pkg/reflect/value.go +++ b/src/pkg/reflect/value.go @@ -848,7 +848,7 @@ type tiny struct { b byte } -// Call calls the function v with input parameters in. +// Call calls the function fv with input parameters in. // It returns the function's output parameters as Values. func (fv *FuncValue) Call(in []Value) []Value { var structAlign = Typeof((*tiny)(nil)).(*PtrType).Elem().Size()