aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDean Prichard <dean.prichard@gmail.com>2010-03-10 10:00:10 +1100
committerAndrew Gerrand <adg@golang.org>2010-03-10 10:00:10 +1100
commit75e5ece03a644a7587a0602d3a10e5a15aeb6227 (patch)
tree6f9177e731c9d8bb075f8d0ee6c1ee5ee947bb61
parent9a44578806436e005f2e72618f92a8d597146c52 (diff)
downloadgo-75e5ece03a644a7587a0602d3a10e5a15aeb6227.tar.xz
reflect: typo in comment
R=golang-dev, adg CC=golang-dev https://golang.org/cl/369041
-rw-r--r--src/pkg/reflect/value.go2
1 files changed, 1 insertions, 1 deletions
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()