Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs fix spelling issues #56

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ipa_pc_as/data_structures.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pub struct PredicateIndex {
/// The degree bound supported by IpaPC.
pub supported_degree_bound: usize,

/// The hiding bound supported by IpaPC.
/// The hiding bound is supported by IpaPC.
pub supported_hiding_bound: usize,
}

Expand Down
2 changes: 1 addition & 1 deletion src/r1cs_nark_as/constraints/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ where
Ok((outputs_fe, outputs_bits))
}

/// Blinds the commitments from the first round messages.
/// Blinds the commitments from the first round of messages.
#[tracing::instrument(
target = "r1cs",
skip(nark_matrices_hash, input_instances, nark_sponge)
Expand Down
2 changes: 1 addition & 1 deletion src/r1cs_nark_as/r1cs_nark/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ where
out
}

/// Performs a setup for R1CS. This function does not currently do anything meaning.
/// Performs a setup for R1CS. This function does not currently do anything meaningful.
pub fn setup() -> PublicParameters {}

/// Outputs a specialized prover and verifier key for some R1CS instance.
Expand Down