From 50216fd861d29477199863ccd8bf4d2095bd27c8 Mon Sep 17 00:00:00 2001 From: SRL132 Date: Thu, 20 Nov 2025 03:35:19 +0100 Subject: [PATCH] node, gnd: Fix typos in command-line option help strings --- gnd/src/main.rs | 2 +- node/src/opt.rs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gnd/src/main.rs b/gnd/src/main.rs index 4c34a59317e..f0469141b89 100644 --- a/gnd/src/main.rs +++ b/gnd/src/main.rs @@ -84,7 +84,7 @@ pub struct DevOpt { allow_negative_numbers = false, value_name = "NETWORK_NAME:[CAPABILITIES]:URL", env = "ETHEREUM_RPC", - help = "Ethereum network name (e.g. 'mainnet'), optional comma-seperated capabilities (eg 'full,archive'), and an Ethereum RPC URL, separated by a ':'" + help = "Ethereum network name (e.g. 'mainnet'), optional comma-separated capabilities (eg 'full,archive'), and an Ethereum RPC URL, separated by a ':'" )] pub ethereum_rpc: Vec, diff --git a/node/src/opt.rs b/node/src/opt.rs index 9928144396a..3f8bdaf587e 100644 --- a/node/src/opt.rs +++ b/node/src/opt.rs @@ -82,7 +82,7 @@ pub struct Opt { conflicts_with_all = &["ethereum_ws", "ethereum_ipc", "config"], value_name="NETWORK_NAME:[CAPABILITIES]:URL", env="ETHEREUM_RPC", - help= "Ethereum network name (e.g. 'mainnet'), optional comma-seperated capabilities (eg 'full,archive'), and an Ethereum RPC URL, separated by a ':'", + help= "Ethereum network name (e.g. 'mainnet'), optional comma-separated capabilities (eg 'full,archive'), and an Ethereum RPC URL, separated by a ':'", )] pub ethereum_rpc: Vec, #[clap(long, allow_negative_numbers = false, @@ -90,7 +90,7 @@ pub struct Opt { conflicts_with_all = &["ethereum_rpc", "ethereum_ipc", "config"], value_name="NETWORK_NAME:[CAPABILITIES]:URL", env="ETHEREUM_WS", - help= "Ethereum network name (e.g. 'mainnet'), optional comma-seperated capabilities (eg 'full,archive`, and an Ethereum WebSocket URL, separated by a ':'", + help= "Ethereum network name (e.g. 'mainnet'), optional comma-separated capabilities (eg 'full,archive', and an Ethereum WebSocket URL, separated by a ':'", )] pub ethereum_ws: Vec, #[clap(long, @@ -99,7 +99,7 @@ pub struct Opt { conflicts_with_all = &["ethereum_rpc", "ethereum_ws", "config"], value_name="NETWORK_NAME:[CAPABILITIES]:FILE", env="ETHEREUM_IPC", - help= "Ethereum network name (e.g. 'mainnet'), optional comma-seperated capabilities (eg 'full,archive'), and an Ethereum IPC pipe, separated by a ':'", + help= "Ethereum network name (e.g. 'mainnet'), optional comma-separated capabilities (eg 'full,archive'), and an Ethereum IPC pipe, separated by a ':'", )] pub ethereum_ipc: Vec, #[clap(