Fix the CLI help output about the `--config` option (#541)
This commit is contained in:
parent
f6490b31c9
commit
0e5615e13e
|
@ -177,7 +177,7 @@ else
|
||||||
|
|
||||||
if (!exists(explicitConfigDir) || !isDir(explicitConfigDir))
|
if (!exists(explicitConfigDir) || !isDir(explicitConfigDir))
|
||||||
{
|
{
|
||||||
stderr.writeln("--config_dir|c must specify existing directory path");
|
stderr.writeln("--config|c must specify existing directory path");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
explicitConfig = getConfigFor!Config(explicitConfigDir);
|
explicitConfig = getConfigFor!Config(explicitConfigDir);
|
||||||
|
@ -306,7 +306,7 @@ https://github.com/dlang-community/dfmt
|
||||||
Options:
|
Options:
|
||||||
--help, -h Print this help message
|
--help, -h Print this help message
|
||||||
--inplace, -i Edit files in place
|
--inplace, -i Edit files in place
|
||||||
--config_dir, -c Path to directory to load .editorconfig file from.
|
--config, -c Path to directory to load .editorconfig file from.
|
||||||
--version Print the version number and then exit
|
--version Print the version number and then exit
|
||||||
|
|
||||||
Formatting Options:
|
Formatting Options:
|
||||||
|
|
Loading…
Reference in New Issue