Fix typos
This commit is contained in:
parent
de57738377
commit
f6c30a7377
4 changed files with 4 additions and 4 deletions
|
@ -77,7 +77,7 @@ fn main() {
|
|||
.arg(Arg::with_name("input")
|
||||
.short("i")
|
||||
.long("input")
|
||||
.help("path of comiled code.")
|
||||
.help("path of compiled code.")
|
||||
.value_name("FILE")
|
||||
.takes_value(true)
|
||||
.required(false)
|
||||
|
|
|
@ -345,7 +345,7 @@ impl<'de> Deserialize<'de> for FieldPrime {
|
|||
}
|
||||
}
|
||||
|
||||
/// Calculates the gcd using a iterative implementation of the extended euclidian algorithm.
|
||||
/// Calculates the gcd using an iterative implementation of the extended euclidian algorithm.
|
||||
/// Returning `(d, s, t)` so that `d = s * a + t * b`
|
||||
///
|
||||
/// # Arguments
|
||||
|
|
|
@ -43,7 +43,7 @@ fn get_summands<T: Field>(expr: &FlatExpression<T>) -> Vec<&FlatExpression<T>> {
|
|||
}
|
||||
}
|
||||
|
||||
/// Returns a `HashMap` containing variables and the number of occurences
|
||||
/// Returns a `HashMap` containing variables and the number of occurrences
|
||||
///
|
||||
/// # Arguments
|
||||
///
|
||||
|
|
|
@ -7,7 +7,7 @@ use reduce::Reduce;
|
|||
use helpers::{DirectiveStatement, Helper, LibsnarkGadgetHelper};
|
||||
|
||||
// for r1cs import, can be moved.
|
||||
// r1cs data strucutre reflecting JSON standard format:
|
||||
// r1cs data structure reflecting JSON standard format:
|
||||
// {
|
||||
// input_count: count, // # of inputs to pass
|
||||
// outputs: [offset_42, offset_63, offset_55], // indices of the outputs in the witness
|
||||
|
|
Loading…
Reference in a new issue