summaryrefslogtreecommitdiff
path: root/src/pkg/testing/quick/quick.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/testing/quick/quick.go')
-rw-r--r--src/pkg/testing/quick/quick.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/testing/quick/quick.go b/src/pkg/testing/quick/quick.go
index ae5cff6e2..da35d64db 100644
--- a/src/pkg/testing/quick/quick.go
+++ b/src/pkg/testing/quick/quick.go
@@ -224,11 +224,11 @@ func (s *CheckEqualError) String() string {
//
// func TestOddMultipleOfThree(t *testing.T) {
// f := func(x int) bool {
-// y := OddMultipleOfThree(x);
+// y := OddMultipleOfThree(x)
// return y%2 == 1 && y%3 == 0
// }
// if err := quick.Check(f, nil); err != nil {
-// t.Error(err);
+// t.Error(err)
// }
// }
func Check(function interface{}, config *Config) (err os.Error) {