We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1870935 commit 1772295Copy full SHA for 1772295
rewatch/src/format_cmd.rs
@@ -25,12 +25,12 @@ pub fn run(
25
};
26
27
if check && stdin_path.is_some() {
28
- bail!("format -stdin cannot be used with -check flag");
+ bail!("format --stdin cannot be used with --check flag");
29
}
30
31
if all {
32
if stdin_path.is_some() || !files.is_empty() {
33
- bail!("format -all can not be in use with other flags");
+ bail!("format --all can not be in use with other flags");
34
35
format_all(&bsc_exe, check)?;
36
} else if stdin_path.is_some() {
0 commit comments