Replace all instances of 'column path' in help messages with 'cell path' (#7063)

* Rewrite all 'column path' instances to 'cell path'

* Minor tweak
This commit is contained in:
Leon
2022-11-10 15:49:11 +10:00
committed by GitHub
parent bb0d08a721
commit 921a66554e
55 changed files with 71 additions and 73 deletions

View File

@ -39,15 +39,15 @@ impl Command for SubCommand {
Some('d'),
)
.rest(
"column path",
"cell path",
SyntaxShape::CellPath,
"optionally, draw gradients using text from column paths",
"for a data structure input, add a gradient to strings at the given cell paths",
)
.category(Category::Platform)
}
fn usage(&self) -> &str {
"Draw text with a provided start and end code making a gradient"
"Add a color gradient (using ANSI color codes) to the given string"
}
fn run(

View File

@ -16,9 +16,9 @@ impl Command for SubCommand {
Signature::build("ansi strip")
.input_output_types(vec![(Type::String, Type::String)])
.rest(
"column path",
"cell path",
SyntaxShape::CellPath,
"optionally, remove ANSI sequences by column paths",
"for a data structure input, remove ANSI sequences from strings at the given cell paths",
)
.category(Category::Platform)
}