Skip to content

Commit 52874b8

Browse files
committedApr 3, 2024
Update on_unimplemented for format string changes.
Updated in rust-lang/rust#122402
1 parent 5e29b01 commit 52874b8

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed
 

‎src/attributes/diagnostics.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -325,14 +325,17 @@ If any of the other options appears several times the first occurrence of the re
325325
Any other occurrence generates an lint warning.
326326
For any other non-existing option a lint-warning is generated.
327327
328-
All three options accept a string as an argument.
329-
The text in the string may contain the following format parameters which provide substitutions in the generated message:
328+
All three options accept a string as an argument, interpreted using the same formatting as a [`std::fmt`] string.
329+
Format parameters with the given named parameter will be replaced with the following text:
330330
331331
* `{Self}` — The name of the type implementing the trait.
332332
* `{` *GenericParameterName* `}` — The name of the generic argument's type for the given generic parameter.
333333
334334
Any other format parameter will generate a warning, but will otherwise be included in the string as-is.
335335
336+
Invalid format strings may generate a warning, but are otherwise allowed, but may not display as intended.
337+
Format specifiers may generate a warning, but are otherwise ignored.
338+
336339
In this example:
337340
338341
```rust,compile_fail,E0277
@@ -367,6 +370,7 @@ error[E0277]: My Message for `ImportantTrait<i32>` implemented for `String`
367370
= note: Note 2
368371
```
369372

373+
[`std::fmt`]: ../../std/fmt/index.html
370374
[Clippy]: https://github.com/rust-lang/rust-clippy
371375
[_MetaListNameValueStr_]: ../attributes.md#meta-item-attribute-syntax
372376
[_MetaListPaths_]: ../attributes.md#meta-item-attribute-syntax

0 commit comments

Comments
 (0)