Skip to content

Commit e950158

Browse files
committed
2025-02-27 20:59:33
1 parent 0284fa3 commit e950158

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

daze.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1047,7 +1047,7 @@ type RandomReader struct{}
10471047

10481048
// Read implements io.Reader.
10491049
func (r *RandomReader) Read(p []byte) (int, error) {
1050-
for i := 0; i < len(p); i++ {
1050+
for i := range len(p) {
10511051
p[i] = byte(rand.Uint64())
10521052
}
10531053
return len(p), nil

0 commit comments

Comments
 (0)