@@ -8,7 +8,7 @@ LL | println!("%.*3$s %s!\n", "Hello,", "World", 4);
88 | | argument never used
99 | multiple missing formatting specifiers
1010 |
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`
1212help: format specifiers use curly braces
1313 |
1414LL | println!("{:.2$} {}!\n", "Hello,", "World", 4);
@@ -22,7 +22,7 @@ LL | println!("%1$*2$.*3$f", 123.456);
2222 | |
2323 | help: format specifiers use curly braces: `{0:1$.2$}`
2424 |
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`
2626
2727error: multiple unused formatting arguments
2828 --> $DIR/format-foreign.rs:6:7
@@ -37,7 +37,7 @@ LL | | "###, "Hello,", "World", 4);
3737 | |____| argument never used
3838 | multiple missing formatting specifiers
3939 |
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`
4141help: format specifiers use curly braces
4242 |
4343LL ~ println!(r###"{:.2$}
@@ -60,7 +60,7 @@ LL | println!("Hi there, $NAME.", NAME="Tim");
6060 | |
6161 | help: format specifiers use curly braces: `{NAME}`
6262 |
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`
6464
6565error: multiple unused formatting arguments
6666 --> $DIR/format-foreign.rs:15:32
@@ -72,7 +72,7 @@ LL | println!("$1 $0 $$ $NAME", 1, 2, NAME=3);
7272 | | argument never used
7373 | multiple missing formatting specifiers
7474 |
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`
7676help: format specifiers use curly braces
7777 |
7878LL | println!("{1} {0} $$ {NAME}", 1, 2, NAME=3);
0 commit comments