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

Fix typos #379

Open
wants to merge 2 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/linear_proof.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use crate::errors::ProofError;
use crate::inner_product_proof::inner_product;
use crate::transcript::TranscriptProtocol;

/// A linear proof, which is an "lightweight" version of a Bulletproofs inner-product proof
/// A linear proof, which is a "lightweight" version of a Bulletproofs inner-product proof
/// Protocol: Section E.3 of [GHL'21](https://eprint.iacr.org/2021/1397.pdf)
///
/// Prove that <a, b> = c where a is secret and b is public.
Expand Down
2 changes: 1 addition & 1 deletion src/r1cs/constraint_system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ pub trait ConstraintSystem {
///
/// This either allocates a new multiplier and returns its `left` variable,
/// or returns a `right` variable of a multiplier previously allocated by this method.
/// The output of a multiplier is assigned on a even call, when `right` is assigned.
/// The output of a multiplier is assigned on an even call, when `right` is assigned.
///
/// When CS is committed at the end of the first or second phase, the half-assigned multiplier
/// has the `right` assigned to zero and all its variables committed.
Expand Down