Skip to content

Commit 1b24d84

Browse files
committed
fix: clippy and docs
1 parent b26dc48 commit 1b24d84

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/baby_jubjub.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! This is an append to the the `ark-ed-on-bn254` crate to use the EIP-2494 defined Baby Jubjub curve parameters.
44
//!
5-
//! - https://eips.ethereum.org/EIPS/eip-2494
5+
//! - <https://eips.ethereum.org/EIPS/eip-2494>
66
//!
77
//! - Base field: q = 21888242871839275222246405745257275088548364400416034343698204186575808495617
88
//! - Scalar field: r = 2736030358979909402780800718157159386076813972158567259200215660948447373041

src/group.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ impl Group {
115115
}
116116
}
117117

118-
self.tree.insert_many(&members)?;
118+
self.tree.insert_many(members)?;
119119
Ok(())
120120
}
121121

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Semaphore Rust Implementation
22
//!
33
//! Protocol specifications:
4-
//! - https://github.com/zkspecs/zkspecs/tree/main/specs/3
4+
//! - <https://github.com/zkspecs/zkspecs/tree/main/specs/3>
55
66
pub mod baby_jubjub;
77
pub mod error;

0 commit comments

Comments
 (0)