1
0
mirror of https://github.com/golang/go synced 2024-10-03 06:31:22 -06:00

reflect: typo in comment

R=golang-dev, adg
CC=golang-dev
https://golang.org/cl/369041
This commit is contained in:
Dean Prichard 2010-03-10 10:00:10 +11:00 committed by Andrew Gerrand
parent 9a44578806
commit 75e5ece03a

View File

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