minor typo fix (#147)

* typo fix

* Comment typos fix

* Update README.md

* Comment typo fix
This commit is contained in:
JunheeLee
2023-03-10 07:08:50 +09:00
committed by GitHub
parent 03710dbb97
commit 6ba204401f
3 changed files with 9 additions and 4 deletions

View File

@@ -19,7 +19,7 @@ pub trait StepCircuit<F: PrimeField>: Send + Sync + Clone {
z: &[AllocatedNum<F>],
) -> Result<Vec<AllocatedNum<F>>, SynthesisError>;
/// return the output of the step when provided with with the step's input
/// return the output of the step when provided with the step's input
fn output(&self, z: &[F]) -> Vec<F>;
}