From: Dmitry Vyukov Date: Fri, 27 Mar 2015 12:47:44 +0000 (+0300) Subject: testing/quick: fix comment X-Git-Tag: go1.5beta1~1414 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=6b85090139dc32086239502679aa6f3f248f6ff1;p=gostls13.git testing/quick: fix comment There is no top-level Values function. Change-Id: I3ea2eea0b5f77f3e1a3f75d1a6472507ef2888bb Reviewed-on: https://go-review.googlesource.com/8196 Reviewed-by: Brad Fitzpatrick --- diff --git a/src/testing/quick/quick.go b/src/testing/quick/quick.go index edcaaa091a..35b7b636b4 100644 --- a/src/testing/quick/quick.go +++ b/src/testing/quick/quick.go @@ -161,7 +161,7 @@ type Config struct { Rand *rand.Rand // If non-nil, the Values function generates a slice of arbitrary // reflect.Values that are congruent with the arguments to the function - // being tested. Otherwise, the top-level Values function is used + // being tested. Otherwise, the top-level Value function is used // to generate them. Values func([]reflect.Value, *rand.Rand) }