diff options
| author | Kisaragi <48310258+KisaragiEffective@users.noreply.github.com> | 2023-12-04 08:03:39 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-04 08:03:39 +0900 |
| commit | a3ce379adcabc70c7efedf38a8b8f988f3df7d2e (patch) | |
| tree | 46c17f01577331098d36ead5287d3e6ee05f3724 | |
| parent | 7671c283a50b5d1168841f3014b14000f01dd204 (diff) | |
| download | rust-a3ce379adcabc70c7efedf38a8b8f988f3df7d2e.tar.gz rust-a3ce379adcabc70c7efedf38a8b8f988f3df7d2e.zip | |
docs(explicit_write): add missing backtick to complete code snippet
| -rw-r--r-- | clippy_lints/src/explicit_write.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/explicit_write.rs b/clippy_lints/src/explicit_write.rs index b612cc00bf9..516c0f85702 100644 --- a/clippy_lints/src/explicit_write.rs +++ b/clippy_lints/src/explicit_write.rs @@ -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 |
