From 371ddb59064080170cd2c77fc84ec4d8abbe4a43 Mon Sep 17 00:00:00 2001 From: Dimitris Apostolou Date: Mon, 26 Feb 2024 10:03:01 +0200 Subject: [PATCH] fix: fix typo (#60) --- 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; }