Skip to content

Commit 73cef1a

Browse files
Copilotmrjf
andauthored
fix(lint): format src/stats/sample.ts to pass Biome formatting check
Agent-Logs-Url: https://github.com/githubnext/tsessebe/sessions/1986d026-3aa4-43dd-aff2-d6fe777651bc Co-authored-by: mrjf <180956+mrjf@users.noreply.github.com>
1 parent f2ae30a commit 73cef1a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/stats/sample.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@ class Rng {
108108
// stays small for the first few steps.
109109
let s = seed >>> 0 || 0xdeadbeef;
110110
// Wang hash to spread bits before the first step.
111-
s = ((s ^ 61) ^ (s >>> 16)) >>> 0;
111+
s = (s ^ 61 ^ (s >>> 16)) >>> 0;
112112
s = (s + (s << 3)) >>> 0;
113113
s = (s ^ (s >>> 4)) >>> 0;
114-
s = (Math.imul(s, 0x27d4eb2d)) >>> 0;
114+
s = Math.imul(s, 0x27d4eb2d) >>> 0;
115115
s = (s ^ (s >>> 15)) >>> 0;
116116
this._state = s || 0xdeadbeef;
117117
}

0 commit comments

Comments
 (0)