♻️ rework some help strings (#12306)

# Description

I changed some help outputs:


![image](https://github.com/nushell/nushell/assets/30557287/d25f0fbe-ffc3-43b3-93cf-b1793d2351b6)


![image](https://github.com/nushell/nushell/assets/30557287/acb5581c-8959-4916-8a55-d3ed6a2e1dcf)

I also checked with `rg` the commands deprecated in #9840 and found a
help or a comment here and there.

# User-Facing Changes

same of above

# Tests + Formatting
This commit is contained in:
Auca Coyan
2024-03-27 10:41:02 -03:00
committed by GitHub
parent 01d30a416b
commit bf8de9d1ea
4 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@ impl Command for ScopeCommands {
fn signature(&self) -> Signature {
Signature::build("scope commands")
.input_output_types(vec![(Type::Nothing, Type::Any)])
.input_output_types(vec![(Type::Nothing, Type::List(Box::new(Type::Any)))])
.allow_variants_without_examples(true)
.category(Category::Core)
}