summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDean Prichard <dean.prichard@gmail.com>2010-03-10 10:00:10 +1100
committerDean Prichard <dean.prichard@gmail.com>2010-03-10 10:00:10 +1100
commit82ed533b5e7fc9c2b260f831fd5437dbc436835c (patch)
treef8137f85648c7d5e84811fc025b08a928fc6f7c4
parentfa2b4ec3b3765405e57aa3809f9375df2984cc50 (diff)
downloadgolang-82ed533b5e7fc9c2b260f831fd5437dbc436835c.tar.gz
reflect: typo in comment
R=golang-dev, adg CC=golang-dev http://codereview.appspot.com/369041 Committer: Andrew Gerrand <adg@golang.org>
-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 32accddf5..4134da67e 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()