Dataframe commands name (#457)

* corrected missing shellerror type

* batch dataframe commands

* removed option to find declaration with input

* ordered dataframe folders

* dataframe command name
This commit is contained in:
Fernando Herrera
2021-12-10 00:17:11 +00:00
committed by GitHub
parent 7319b6b168
commit 865906e450
11 changed files with 64 additions and 22 deletions

View File

@ -273,7 +273,7 @@ fn get_flags_section(signature: &Signature) -> String {
if let Some(short) = flag.short {
if flag.required {
format!(
" -{}{} (required parameter){:?} {}\n",
" -{}{} (required parameter) {:?} {}\n",
short,
if !flag.long.is_empty() {
format!(", --{}", flag.long)
@ -298,7 +298,7 @@ fn get_flags_section(signature: &Signature) -> String {
}
} else if flag.required {
format!(
" --{} (required parameter){:?} {}\n",
" --{} (required parameter) {:?} {}\n",
flag.long, arg, flag.desc
)
} else {