mirror of
https://github.com/saymrwulf/risc0-curve25519-dalek-source.git
synced 2026-09-04 20:03:40 +00:00
Fix doctests (missed during merge)
This commit is contained in:
parent
bb50700d77
commit
6eb876f3cb
1 changed files with 3 additions and 3 deletions
|
|
@ -124,9 +124,9 @@ pub trait VartimeMultiscalarMul {
|
|||
/// use curve25519_dalek::scalar::Scalar;
|
||||
///
|
||||
/// // Some scalars
|
||||
/// let a = Scalar::from_u64(87329482);
|
||||
/// let b = Scalar::from_u64(37264829);
|
||||
/// let c = Scalar::from_u64(98098098);
|
||||
/// let a = Scalar::from(87329482u64);
|
||||
/// let b = Scalar::from(37264829u64);
|
||||
/// let c = Scalar::from(98098098u64);
|
||||
/// let abc = [a,b,c];
|
||||
///
|
||||
/// // Some points
|
||||
|
|
|
|||
Loading…
Reference in a new issue