Skip to content

Commit 329341a

Browse files
committed
Fix a typo
1 parent 1d341bb commit 329341a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/uint/traits.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ impl<const L: usize, const W: usize> Extendable<Uint<W>> for Uint<L> {
159159
return None;
160160
}
161161

162-
// TODO: can potentially expose a secret `self` if the compiler decides to copy it.
162+
// TODO: can potentially expose a secret `value` if the compiler decides to copy it.
163163
let mut lo = Uint::<L>::ZERO;
164164
lo.as_limbs_mut().copy_from_slice(&value.as_limbs()[0..L]);
165165
Some(lo)

0 commit comments

Comments
 (0)