diff --git a/crates/nu-command/src/network/url/url_.rs b/crates/nu-command/src/network/url/url_.rs index 6b572fc744..9b14177fb2 100644 --- a/crates/nu-command/src/network/url/url_.rs +++ b/crates/nu-command/src/network/url/url_.rs @@ -15,12 +15,16 @@ impl Command for Url { fn signature(&self) -> Signature { Signature::build("url") - .input_output_types(vec![(Type::String, Type::String)]) + .input_output_types(vec![(Type::Nothing, Type::String)]) .category(Category::Network) } fn usage(&self) -> &str { - "Apply url function." + "Various commands for working with URLs" + } + + fn extra_usage(&self) -> &str { + "You must use one of the following subcommands. Using this command as-is will only produce this help message." } fn search_terms(&self) -> Vec<&str> {