We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bc25d0 commit 1210bb4Copy full SHA for 1210bb4
clippy_lints/src/octal_escapes.rs
@@ -27,6 +27,10 @@ declare_clippy_lint! {
27
/// The actual meaning can be the intended one. `\x00` can be used in these
28
/// cases to be unambigious.
29
///
30
+ /// The lint does not trigger for format strings in `print!()`, `write!()`
31
+ /// and friends since the string is already preprocessed when Clippy lints
32
+ /// can see it.
33
+ ///
34
/// # Example
35
/// ```rust
36
/// // Bad
0 commit comments