From 96a4aac13ed43615606d7be4fdb048e5d553fc3d Mon Sep 17 00:00:00 2001 From: tom Date: Mon, 24 Jun 2024 15:34:17 +0800 Subject: [PATCH] chore: fix typos (#257) --- README.md | 6 +++--- crates/cli/src/app_builder.rs | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index bb2acf288..7b4180e2f 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ with OPTIONS: ``` --ctxin 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 [...] Path to context output @@ -106,11 +106,11 @@ with OPTIONS: --private 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 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 Path to the Wasm image diff --git a/crates/cli/src/app_builder.rs b/crates/cli/src/app_builder.rs index db30789c2..30267ed1b 100644 --- a/crates/cli/src/app_builder.rs +++ b/crates/cli/src/app_builder.rs @@ -55,7 +55,7 @@ impl ArgBuilder for OutputDirArg { struct PublicInputsArg; impl ArgBuilder> for PublicInputsArg { fn builder() -> Arg<'static> { - arg!(--public ... "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 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) } @@ -71,7 +71,7 @@ impl ArgBuilder> for PublicInputsArg { struct PrivateInputsArg; impl ArgBuilder> for PrivateInputsArg { fn builder() -> Arg<'static> { - arg!(--private ... "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 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) } @@ -87,7 +87,7 @@ impl ArgBuilder> for PrivateInputsArg { struct ContextInputsArg; impl ArgBuilder> for ContextInputsArg { fn builder() -> Arg<'static> { - arg!(--ctxin ... "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 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) }