Skip to content

Commit

Permalink
chore: fix typos (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
simlecode authored Jun 24, 2024
1 parent 97ffe85 commit 96a4aac
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ with OPTIONS:
```
--ctxin <CONTEXT_INPUT>
Context inputs with format value:type where type=i64|bytes|bytes-packed, values can be
seperated by `,` or multiple occurrence of `--ctxin`
separated by `,` or multiple occurrence of `--ctxin`
--ctxout [<CONTEXT_OUTPUT>...]
Path to context output
Expand All @@ -106,11 +106,11 @@ with OPTIONS:
--private <PRIVATE_INPUT>
Private inputs with format value:type where type=i64|bytes|bytes-packed, values can be
seperated by `,` or multiple occurrence of `--private`
separated by `,` or multiple occurrence of `--private`
--public <PUBLIC_INPUT>
Public inputs with format value:type where type=i64|bytes|bytes-packed, values can be
seperated by `,` or multiple occurrence of `--public`
separated by `,` or multiple occurrence of `--public`
--wasm <WASM>
Path to the Wasm image
Expand Down
6 changes: 3 additions & 3 deletions crates/cli/src/app_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ impl ArgBuilder<PathBuf> for OutputDirArg {
struct PublicInputsArg;
impl ArgBuilder<Vec<String>> for PublicInputsArg {
fn builder() -> Arg<'static> {
arg!(--public <PUBLIC_INPUT> ... "Public inputs with format value:type where type=i64|bytes|bytes-packed, values can be seperated by `,` or multiple occurrence of `--public`")
arg!(--public <PUBLIC_INPUT> ... "Public inputs with format value:type where type=i64|bytes|bytes-packed, values can be separated by `,` or multiple occurrence of `--public`")
.takes_value(true).value_delimiter(',').required(false)
}

Expand All @@ -71,7 +71,7 @@ impl ArgBuilder<Vec<String>> for PublicInputsArg {
struct PrivateInputsArg;
impl ArgBuilder<Vec<String>> for PrivateInputsArg {
fn builder() -> Arg<'static> {
arg!(--private <PRIVATE_INPUT> ... "Private inputs with format value:type where type=i64|bytes|bytes-packed, values can be seperated by `,` or multiple occurrence of `--private`")
arg!(--private <PRIVATE_INPUT> ... "Private inputs with format value:type where type=i64|bytes|bytes-packed, values can be separated by `,` or multiple occurrence of `--private`")
.takes_value(true).value_delimiter(',').required(false)
}

Expand All @@ -87,7 +87,7 @@ impl ArgBuilder<Vec<String>> for PrivateInputsArg {
struct ContextInputsArg;
impl ArgBuilder<Vec<String>> for ContextInputsArg {
fn builder() -> Arg<'static> {
arg!(--ctxin <CONTEXT_INPUT> ... "Context inputs with format value:type where type=i64|bytes|bytes-packed, values can be seperated by `,` or multiple occurrence of `--ctxin`")
arg!(--ctxin <CONTEXT_INPUT> ... "Context inputs with format value:type where type=i64|bytes|bytes-packed, values can be separated by `,` or multiple occurrence of `--ctxin`")
.takes_value(true).value_delimiter(',').required(false)
}

Expand Down

0 comments on commit 96a4aac

Please sign in to comment.