Skip to content

Commit 3690ae8

Browse files
committed
remove jotai atom ref in comment
1 parent 8aef267 commit 3690ae8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/util/util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function boundNumber(num: number, min: number, max: number): number {
4343
return Math.min(Math.max(num, min), max);
4444
}
4545

46-
// key must be a suitable weakmap key (e.g. a jotai atom). pass the new value
46+
// key must be a suitable weakmap key. pass the new value
4747
// it will return the prevValue (for object equality) if the new value is deep equal to the prev value
4848
function deepCompareReturnPrev(key: any, newValue: any): any {
4949
if (key == null) {

0 commit comments

Comments
 (0)