Skip to content

Commit b33273e

Browse files
Copilotmrjf
andauthored
Fix Biome formatter error in series.ts radix sort
Agent-Logs-Url: https://github.com/githubnext/tsessebe/sessions/2bd09cf8-6acb-4a34-94b0-e847e4b272ba Co-authored-by: mrjf <180956+mrjf@users.noreply.github.com>
1 parent 0f7ce44 commit b33273e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/core/series.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -782,8 +782,8 @@ export class Series<T extends Scalar = Scalar> {
782782
let lo = fvalsU32[origIdx * 2]!;
783783
let hi = fvalsU32[origIdx * 2 + 1]!;
784784
if (hi & 0x80000000) {
785-
lo = (~lo) >>> 0;
786-
hi = (~hi) >>> 0;
785+
lo = ~lo >>> 0;
786+
hi = ~hi >>> 0;
787787
} else {
788788
hi = (hi ^ 0x80000000) >>> 0;
789789
}

0 commit comments

Comments
 (0)