Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jae-cuz committed Sep 18, 2023
1 parent 308241d commit 340c35b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/fibo_with_padding.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ fn fibo_circuit<F: Field + From<u64> + Hash>() -> (Circuit<F>, Option<Assignment
ctx.setup(move |ctx| {
// b == b.next
ctx.transition(eq(b, b.next()));
// n == n.ext
// n == n.next
ctx.transition(eq(n, n.next()));
});

Expand Down

0 comments on commit 340c35b

Please sign in to comment.