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

@@ -34,7 +34,7 @@ impl Command for SubCommand {
.named(
"columns",
SyntaxShape::Table,
"Optionally operate by column path",
"For a record or table input, convert strings in the given columns to their basename",
Some('c'),
)
.named(

View File

@@ -31,7 +31,7 @@ impl Command for SubCommand {
.named(
"columns",
SyntaxShape::Table,
"Optionally operate by column path",
"For a record or table input, convert strings at the given columns to their dirname",
Some('c'),
)
.named(

View File

@@ -31,7 +31,7 @@ impl Command for SubCommand {
.named(
"columns",
SyntaxShape::Table,
"Optionally operate by column path",
"For a record or table input, check strings at the given columns, and replace with result",
Some('c'),
)
}

View File

@@ -42,7 +42,7 @@ impl Command for SubCommand {
.named(
"columns",
SyntaxShape::Table,
"Optionally operate by column path",
"For a record or table input, expand strings at the given columns",
Some('c'),
)
}

View File

@@ -40,7 +40,7 @@ impl Command for SubCommand {
.named(
"columns",
SyntaxShape::Table,
"Optionally operate by column path",
"For a record or table input, join strings at the given columns",
Some('c'),
)
.rest("append", SyntaxShape::String, "Path to append to the input")

View File

@@ -33,7 +33,7 @@ impl Command for SubCommand {
.named(
"columns",
SyntaxShape::Table,
"Optionally operate by column path",
"For a record or table input, convert strings at the given columns",
Some('c'),
)
.named(

View File

@@ -38,13 +38,13 @@ impl Command for SubCommand {
.named(
"columns",
SyntaxShape::Table,
"Optionally operate by column path",
"For a record or table input, convert strings at the given columns",
Some('c'),
)
}
fn usage(&self) -> &str {
"Get a path as relative to another path."
"Express a path as relative to another path."
}
fn extra_usage(&self) -> &str {

View File

@@ -31,7 +31,7 @@ impl Command for SubCommand {
.named(
"columns",
SyntaxShape::Table,
"Optionally operate by column path",
"For a record or table input, split strings at the given columns",
Some('c'),
)
}

View File

@@ -31,7 +31,7 @@ impl Command for SubCommand {
.named(
"columns",
SyntaxShape::Table,
"Optionally operate by column path",
"For a record or table input, check strings at the given columns, and replace with result",
Some('c'),
)
}