Skip to content

Commit

Permalink
remove unused comment
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangyunhao116 committed Oct 21, 2021
1 parent 45a0594 commit 22fbcf4
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lang/fastrand/fastrand.go
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ func Read(p []byte) (int, error) {

if l > 0 {
// Local XORSHIFT.
// We don't need to save s0 and s1(tmp is not used).
s1 ^= s1 << 17
s1 = s1 ^ s0 ^ s1>>7 ^ s0>>16

Expand Down

0 comments on commit 22fbcf4

Please sign in to comment.