diff --git a/substrate/client/cli/src/params/network_params.rs b/substrate/client/cli/src/params/network_params.rs
index 185a93f66b3d2f2b50cf59b64154cf30d5645e0b..dd2e09e4a8c3e3d6c53cc2a71a43bd981104be12 100644
--- a/substrate/client/cli/src/params/network_params.rs
+++ b/substrate/client/cli/src/params/network_params.rs
@@ -128,10 +128,13 @@ pub struct NetworkParams {
 	pub ipfs_server: bool,
 
 	/// Blockchain syncing mode.
-	/// Full - Download and validate full blockchain history (Default).
-	/// Fast - Download blocks and the latest state only.
-	/// FastUnsafe - Same as Fast, but do skips downloading state proofs.
-	#[structopt(long, default_value = "Full")]
+	///
+	/// - `Full`: Download and validate full blockchain history.
+	///
+	/// - `Fast`: Download blocks and the latest state only.
+	///
+	/// - `FastUnsafe`: Same as `Fast`, but skip downloading state proofs.
+	#[structopt(long, value_name = "SYNC_MODE", default_value = "Full")]
 	pub sync: SyncMode,
 }