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

@@ -22,7 +22,7 @@ impl Command for SubCommand {
.rest(
"rest",
SyntaxShape::CellPath,
"optionally convert text to camelCase by column paths",
"For a data structure input, convert strings at the given cell paths",
)
.category(Category::Strings)
}

View File

@@ -20,7 +20,7 @@ impl Command for SubCommand {
.rest(
"rest",
SyntaxShape::CellPath,
"optionally capitalize text by column paths",
"For a data structure input, convert strings at the given cell paths",
)
.category(Category::Strings)
}

View File

@@ -20,7 +20,7 @@ impl Command for SubCommand {
.rest(
"rest",
SyntaxShape::CellPath,
"optionally downcase text by column paths",
"For a data structure input, convert strings at the given cell paths",
)
.category(Category::Strings)
}

View File

@@ -22,7 +22,7 @@ impl Command for SubCommand {
.rest(
"rest",
SyntaxShape::CellPath,
"optionally convert text to kebab-case by column paths",
"For a data structure input, convert strings at the given cell paths",
)
.category(Category::Strings)
}

View File

@@ -22,7 +22,7 @@ impl Command for SubCommand {
.rest(
"rest",
SyntaxShape::CellPath,
"optionally convert text to PascalCase by column paths",
"For a data structure input, convert strings at the given cell paths",
)
.category(Category::Strings)
}

View File

@@ -21,7 +21,7 @@ impl Command for SubCommand {
.rest(
"rest",
SyntaxShape::CellPath,
"optionally convert text to SCREAMING_SNAKE_CASE by column paths",
"For a data structure input, convert strings at the given cell paths",
)
.category(Category::Strings)
}

View File

@@ -21,7 +21,7 @@ impl Command for SubCommand {
.rest(
"rest",
SyntaxShape::CellPath,
"optionally convert text to snake_case by column paths",
"For a data structure input, convert strings at the given cell paths",
)
.category(Category::Strings)
}

View File

@@ -22,7 +22,7 @@ impl Command for SubCommand {
.rest(
"rest",
SyntaxShape::CellPath,
"optionally convert text to Title Case by column paths",
"For a data structure input, convert strings at the given cell paths",
)
.category(Category::Strings)
}

View File

@@ -19,7 +19,7 @@ impl Command for SubCommand {
.rest(
"rest",
SyntaxShape::CellPath,
"optionally upcase text by column paths",
"For a data structure input, convert strings at the given cell paths",
)
}