docs(explicit_write): add missing backtick to complete code snippet

This commit is contained in:
Kisaragi 2023-12-04 08:03:39 +09:00 committed by GitHub
parent 7671c283a5
commit a3ce379adc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,7 +16,7 @@ declare_clippy_lint! {
/// replaced with `(e)print!()` / `(e)println!()`
///
/// ### Why is this bad?
/// Using `(e)println! is clearer and more concise
/// Using `(e)println!` is clearer and more concise
///
/// ### Example
/// ```rust