You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This feature was stabilized, so the FormatArgs lints should check if the MSRV of
the stabilization is met, rather than checking if the feature is enabled.
= note: switching to `Display` formatting will change how the value is shown; escaped characters will no longer be escaped and surrounding quotes will be removed
20
20
21
21
error: unnecessary `Debug` formatting in `println!` args
= note: switching to `Display` formatting will change how the value is shown; escaped characters will no longer be escaped and surrounding quotes will be removed
29
29
30
30
error: unnecessary `Debug` formatting in `println!` args
= note: switching to `Display` formatting will change how the value is shown; escaped characters will no longer be escaped and surrounding quotes will be removed
38
38
39
39
error: unnecessary `Debug` formatting in `format!` args
= note: switching to `Display` formatting will change how the value is shown; escaped characters will no longer be escaped and surrounding quotes will be removed
47
47
48
48
error: unnecessary `Debug` formatting in `format!` args
= help: use `Display` formatting and change this to `os_str.display()`
8
+
= note: switching to `Display` formatting will change how the value is shown; escaped characters will no longer be escaped and surrounding quotes will be removed
9
+
= note: `-D clippy::unnecessary-debug-formatting` implied by `-D warnings`
10
+
= help: to override `-D warnings` add `#[allow(clippy::unnecessary_debug_formatting)]`
11
+
12
+
error: unnecessary `Debug` formatting in `println!` args
= help: use `Display` formatting and change this to `os_string.display()`
19
+
= note: switching to `Display` formatting will change how the value is shown; escaped characters will no longer be escaped and surrounding quotes will be removed
20
+
21
+
error: unnecessary `Debug` formatting in `println!` args
= help: use `Display` formatting and change this to `path.display()`
8
28
= note: switching to `Display` formatting will change how the value is shown; escaped characters will no longer be escaped and surrounding quotes will be removed
9
-
= note: `-D clippy::unnecessary-debug-formatting` implied by `-D warnings`
10
-
= help: to override `-D warnings` add `#[allow(clippy::unnecessary_debug_formatting)]`
11
29
12
30
error: unnecessary `Debug` formatting in `println!` args
= note: switching to `Display` formatting will change how the value is shown; escaped characters will no longer be escaped and surrounding quotes will be removed
20
38
21
39
error: unnecessary `Debug` formatting in `println!` args
= note: switching to `Display` formatting will change how the value is shown; escaped characters will no longer be escaped and surrounding quotes will be removed
29
47
30
48
error: unnecessary `Debug` formatting in `println!` args
= note: switching to `Display` formatting will change how the value is shown; escaped characters will no longer be escaped and surrounding quotes will be removed
38
56
39
57
error: unnecessary `Debug` formatting in `format!` args
= note: switching to `Display` formatting will change how the value is shown; escaped characters will no longer be escaped and surrounding quotes will be removed
47
65
48
66
error: unnecessary `Debug` formatting in `format!` args
= note: switching to `Display` formatting will change how the value is shown; escaped characters will no longer be escaped and surrounding quotes will be removed
56
74
57
75
error: unnecessary `Debug` formatting in `println!` args
= help: use `Display` formatting and change this to `&*deref_path.display()`
64
82
= note: switching to `Display` formatting will change how the value is shown; escaped characters will no longer be escaped and surrounding quotes will be removed
0 commit comments