Fix a comment typo.

This commit is contained in:
Dave Collins 2013-05-09 21:24:47 -05:00
parent 149d77ad3f
commit e7abb08b6b

View file

@ -151,7 +151,7 @@ func writeVarString(w io.Writer, pver uint32, str string) error {
// randomUint64 returns a cryptographically random uint64 value. This // randomUint64 returns a cryptographically random uint64 value. This
// unexported version takes a reader primarily to ensure the error paths // 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) { func randomUint64(r io.Reader) (uint64, error) {
b := make([]byte, 8) b := make([]byte, 8)
n, err := r.Read(b) n, err := r.Read(b)