From dd19f32a2a9b12657ba1be58cbf3337f49b82ebf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Frosteg=C3=A5rd?= Date: Thu, 13 Aug 2020 04:34:10 +0200 Subject: [PATCH] aquatic help output: print short protocol descriptions --- aquatic/src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aquatic/src/main.rs b/aquatic/src/main.rs index 33f0039..801fcbe 100644 --- a/aquatic/src/main.rs +++ b/aquatic/src/main.rs @@ -91,9 +91,9 @@ fn gen_info() -> String { let app_path = ::std::env::args().next().unwrap(); info.push_str(&format!("\n\nUsage: {} PROTOCOL [OPTIONS]", app_path)); info.push_str("\n\nAvailable protocols:"); - info.push_str("\n udp"); - info.push_str("\n http"); - info.push_str("\n ws"); + info.push_str("\n udp BitTorrent over UDP"); + info.push_str("\n http BitTorrent over HTTP"); + info.push_str("\n ws WebTorrent"); info } \ No newline at end of file