Skip to content
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
4 changes: 2 additions & 2 deletions zokrates_ast/src/ir/expression.rs
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ impl<T> WithSpan for LinComb<T> {
impl<T: Field> LinComb<T> {
pub fn try_constant(self) -> Result<T, Self> {
match self.value.len() {
// if the lincomb is empty, it is reduceable to 0
// if the lincomb is empty, it is reducible to 0
0 => Ok(T::zero()),
_ => {
// take the first variable in the lincomb
Expand Down Expand Up @@ -223,7 +223,7 @@ impl<T: Field> LinComb<T> {

pub fn try_summand(self) -> Result<(Variable, T), Self> {
match self.value.len() {
// if the lincomb is empty, it is not reduceable to a summand
// if the lincomb is empty, it is not reducible to a summand
0 => Err(self),
_ => {
// take the first variable in the lincomb
Expand Down
2 changes: 1 addition & 1 deletion zokrates_cli/src/ops/nova/verify.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ fn cli_nova_verify<'ast, T: NovaField>(
let steps = instance.steps;

if nova::verify_compressed(&proof, &vk, init, steps) {
println!("Compressed proof succesfully verified");
println!("Compressed proof successfully verified");
} else {
eprintln!("Compressed proof verification failed");
}
Expand Down