@@ -8,7 +8,7 @@ LL | println!("%.*3$s %s!\n", "Hello,", "World", 4);
8
8
| | argument never used
9
9
| multiple missing formatting specifiers
10
10
|
11
- = note: printf formatting not supported; see the documentation for `std::fmt`
11
+ = note: printf formatting is not supported; see the documentation for `std::fmt`
12
12
help: format specifiers use curly braces
13
13
|
14
14
LL | println!("{:.2$} {}!\n", "Hello,", "World", 4);
@@ -22,7 +22,7 @@ LL | println!("%1$*2$.*3$f", 123.456);
22
22
| |
23
23
| help: format specifiers use curly braces: `{0:1$.2$}`
24
24
|
25
- = note: printf formatting not supported; see the documentation for `std::fmt`
25
+ = note: printf formatting is not supported; see the documentation for `std::fmt`
26
26
27
27
error: multiple unused formatting arguments
28
28
--> $DIR/format-foreign.rs:6:7
@@ -37,7 +37,7 @@ LL | | "###, "Hello,", "World", 4);
37
37
| |____| argument never used
38
38
| multiple missing formatting specifiers
39
39
|
40
- = note: printf formatting not supported; see the documentation for `std::fmt`
40
+ = note: printf formatting is not supported; see the documentation for `std::fmt`
41
41
help: format specifiers use curly braces
42
42
|
43
43
LL ~ println!(r###"{:.2$}
@@ -60,7 +60,7 @@ LL | println!("Hi there, $NAME.", NAME="Tim");
60
60
| |
61
61
| help: format specifiers use curly braces: `{NAME}`
62
62
|
63
- = note: shell formatting not supported; see the documentation for `std::fmt`
63
+ = note: shell formatting is not supported; see the documentation for `std::fmt`
64
64
65
65
error: multiple unused formatting arguments
66
66
--> $DIR/format-foreign.rs:15:32
@@ -72,7 +72,7 @@ LL | println!("$1 $0 $$ $NAME", 1, 2, NAME=3);
72
72
| | argument never used
73
73
| multiple missing formatting specifiers
74
74
|
75
- = note: shell formatting not supported; see the documentation for `std::fmt`
75
+ = note: shell formatting is not supported; see the documentation for `std::fmt`
76
76
help: format specifiers use curly braces
77
77
|
78
78
LL | println!("{1} {0} $$ {NAME}", 1, 2, NAME=3);
0 commit comments