Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
heerman committed Dec 17, 2024
1 parent f87f279 commit 111cea2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/signal.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export const run = (n) => saw.range(0, n).floor().segment(n);
*/
export const binary = (n) => {
const nBits = reify(n).log2(0).floor().add(1);
return binaryN(n, nBits)
return binaryN(n, nBits);
};

/**
Expand Down

0 comments on commit 111cea2

Please sign in to comment.