Skip to content

Commit

Permalink
corrected a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
weijiekoh committed Sep 9, 2023
1 parent ad3fa66 commit 884e87c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wgsl/fr.wgsl
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ fn cios_mon_pro(a: ptr<function, BigInt256>, b: ptr<function, BigInt256>) -> Big
t[num_words] = t[num_words + 1u] + c;
}

// Check if t > n. If so, return n - t. Else, return t.
// Check if t < n. If so, return t. Else, return n - t.
var t_lt_n = false;
for (var idx = 0u; idx < num_words + 1u; idx ++) {
var i = num_words - 1u - idx;
Expand Down

0 comments on commit 884e87c

Please sign in to comment.