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 DecodeBase64 {
.rest(
"rest",
SyntaxShape::CellPath,
"optionally base64 decode data by column paths",
"For a data structure input, decode data at the given cell paths",
)
.category(Category::Hash)
}

View File

@ -26,7 +26,7 @@ impl Command for EncodeBase64 {
.rest(
"rest",
SyntaxShape::CellPath,
"optionally base64 encode data by column paths",
"For a data structure input, encode data at the given cell paths",
)
.output_type(Type::String)
.category(Category::Hash)