Skip to content

Commit

Permalink
Fixed grammatical inconsistency
Browse files Browse the repository at this point in the history
  • Loading branch information
0xwitty authored Dec 23, 2024
1 parent bfb0c6d commit 8bac503
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions book/static/examples_fibonacci_program_src_main.rs.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
```rust
//! A simple program that takes a number `n` as input, and writes the `n-1`th and `n`th fibonacci
//! number as an output.
//! numbers as an output.

// These two lines are necessary for the program to properly compile.
//
Expand All @@ -19,7 +19,7 @@ pub fn main() {
// Write n to public input
sp1_zkvm::io::commit(&n);

// Compute the n'th fibonacci number, using normal Rust code.
// Compute the n'th fibonacci numbers, using normal Rust code.
let mut a = 0;
let mut b = 1;
for _ in 0..n {
Expand Down

0 comments on commit 8bac503

Please sign in to comment.