From bf62f628d258804736f5c7562270f06fdff2f25b Mon Sep 17 00:00:00 2001 From: Dimitris Apostolou Date: Sun, 25 Feb 2024 10:55:06 +0200 Subject: [PATCH] fix: fix typo --- snark-verifier/src/pcs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snark-verifier/src/pcs.rs b/snark-verifier/src/pcs.rs index 535ebedf..9d772881 100644 --- a/snark-verifier/src/pcs.rs +++ b/snark-verifier/src/pcs.rs @@ -165,7 +165,7 @@ where /// Accumulator to be encoded. type Accumulator: Clone + Debug; - /// Decode an [`AccumulatorEncoding::Accumulator`] from serveral + /// Decode an [`AccumulatorEncoding::Accumulator`] from several /// [`crate::loader::ScalarLoader::LoadedScalar`]s. fn from_repr(repr: &[&L::LoadedScalar]) -> Result; }