We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4293300 commit 356bb72Copy full SHA for 356bb72
2 files changed
crates/fs/src/lib.rs
@@ -22,6 +22,7 @@
22
//! - Proof verification: [`FoldingSchemeVerifier`]
23
//! - `circuits/`: In-circuit (partial / full) gadgets, mainly for verification.
24
//! - `instances/`: Instance types.
25
+//! - `keys/`: Key types.
26
//! - `witnesses/`: Witness types.
27
28
pub mod definitions;
crates/primitives/src/circuits/mod.rs
@@ -96,7 +96,7 @@ pub trait FCircuit {
96
///
97
/// ### Tips
98
99
- /// - Since this method uses `self`, the implementation store some (fixed)
+ /// - Since this method uses `self`, the implementation can store some fixed
100
/// info that is shared across all steps inside `self`.
101
/// - Variables in the implementation should be allocated as witnesses (not
102
/// public inputs) in the implementation.
0 commit comments