From e7abb08b6bfbc309ff59b39575d16b752e1d75ed Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Thu, 9 May 2013 21:24:47 -0500 Subject: [PATCH] Fix a comment typo. --- common.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.go b/common.go index 28c8f325..649d142d 100644 --- a/common.go +++ b/common.go @@ -151,7 +151,7 @@ func writeVarString(w io.Writer, pver uint32, str string) error { // randomUint64 returns a cryptographically random uint64 value. This // unexported version takes a reader primarily to ensure the error paths -// can be properly by passing a fake reader in the tests. +// can be properly tested by passing a fake reader in the tests. func randomUint64(r io.Reader) (uint64, error) { b := make([]byte, 8) n, err := r.Read(b)