From d11b531e1fe52ac80d63ec5344eb3ee8b6ad05f9 Mon Sep 17 00:00:00 2001 From: Abdul Basit Date: Thu, 15 Aug 2024 13:52:44 +0500 Subject: [PATCH] typos --- sequencer/src/bin/dev-rollup.rs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/sequencer/src/bin/dev-rollup.rs b/sequencer/src/bin/dev-rollup.rs index 1a60b8c4d7..4f3ae4fb89 100644 --- a/sequencer/src/bin/dev-rollup.rs +++ b/sequencer/src/bin/dev-rollup.rs @@ -55,12 +55,13 @@ struct Register { #[clap(long, default_value = "test")] pub text: String, - /// Private key can be provided in tagged-base64 format - /// Othwerwise, a default private key with seed = [0;32] and index 9876 is used + /// The private key is provided in tagged-base64 format. + /// If not provided, a default private key with a seed of `[0; 32]` and an index of `9876` will be used. #[clap(long = "privkey")] pub private_key: Option, } +// Options for updating an already registered rollup #[derive(Parser, Debug)] struct Update { #[clap(short, long, env = "ESPRESSO_MARKETPLACE_SOLVER_API_URL")] @@ -81,8 +82,8 @@ struct Update { #[clap(long, default_value = "test")] pub text: Option, - /// Private key can be provided in tagged-base64 format - /// Othwerwise, a default private key with seed = [0;32] and index 9876 is used + /// The private key is provided in tagged-base64 format. + /// If not provided, a default private key with a seed of `[0; 32]` and an index of `9876` will be used. #[clap(long = "privkey")] pub private_key: Option, }