Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #46

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contracts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ forge test -v

#### Step 1: Set the `VERIFIER` environment variable

Find the address of the `verifer` to use from the [deployments](https://github.com/succinctlabs/sp1-contracts/tree/main/contracts/deployments) list for the chain you are deploying to. Set it to the `VERIFIER` environment variable, for example:
Find the address of the `verifier` to use from the [deployments](https://github.com/succinctlabs/sp1-contracts/tree/main/contracts/deployments) list for the chain you are deploying to. Set it to the `VERIFIER` environment variable, for example:

```sh
VERIFIER=0x3B6041173B80E77f038f3F2C0f9744f04837185e
Expand Down
2 changes: 1 addition & 1 deletion lib/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use alloy_sol_types::sol;

sol! {
/// The public values encoded as a struct that can be easily deserialized inside Solidity.
/// The public values are encoded as a struct that can be easily deserialized inside Solidity.
struct PublicValuesStruct {
uint32 n;
uint32 a;
Expand Down
2 changes: 1 addition & 1 deletion program/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use fibonacci_lib::{fibonacci, PublicValuesStruct};
pub fn main() {
// Read an input to the program.
//
// Behind the scenes, this compiles down to a custom system call which handles reading inputs
// Behind the scenes, this compiles down to a custom system call that handles reading inputs
// from the prover.
let n = sp1_zkvm::io::read::<u32>();

Expand Down
2 changes: 1 addition & 1 deletion script/src/bin/evm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ fn create_proof_fixture(
// Note that the verification key stays the same regardless of the input.
println!("Verification Key: {}", fixture.vkey);

// The public values are the values which are publicly committed to by the zkVM.
// The public values are the values that are publicly committed to by the zkVM.
//
// If you need to expose the inputs or outputs of your program, you should commit them in
// the public values.
Expand Down