From 24eb3500cb967503e3158e1d240f30f779a8f687 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Fri, 12 Feb 2021 15:52:46 +0000 Subject: [PATCH] examples: Fix typo --- examples/simple-example.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/simple-example.rs b/examples/simple-example.rs index 52fa124..c9cd38e 100644 --- a/examples/simple-example.rs +++ b/examples/simple-example.rs @@ -321,7 +321,7 @@ fn main() { b: Some(b), }; - // Arrange the public input. We expose the multiplication result in row 4 + // Arrange the public input. We expose the multiplication result in row 6 // of the aux column, so we position it there in our public inputs. let mut public_inputs = vec![Fp::zero(); 1 << k]; public_inputs[6] = c;