diff options
| author | flip1995 <hello@philkrones.com> | 2018-11-27 16:59:52 +0100 |
|---|---|---|
| committer | flip1995 <hello@philkrones.com> | 2018-11-27 16:59:52 +0100 |
| commit | 6eb8e6d7c59ba1dfb4f1e8d669ac8d7a5db06b68 (patch) | |
| tree | d37287891b46608cfa4eba3869e5322c0a73217b | |
| parent | adc638ef334a9f34a16ebaee1c3430c3be04a790 (diff) | |
| download | rust-6eb8e6d7c59ba1dfb4f1e8d669ac8d7a5db06b68.tar.gz rust-6eb8e6d7c59ba1dfb4f1e8d669ac8d7a5db06b68.zip | |
Fix dogfood error
| -rw-r--r-- | clippy_lints/src/write.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clippy_lints/src/write.rs b/clippy_lints/src/write.rs index c746815062b..0119560ccd8 100644 --- a/clippy_lints/src/write.rs +++ b/clippy_lints/src/write.rs @@ -264,8 +264,8 @@ impl EarlyLintPass for Pass { } /// Checks the arguments of `print[ln]!` and `write[ln]!` calls. It will return a tuple of two -/// options. The first part of the tuple is format_str of the macros. The secund part of the tuple -/// is in the `write[ln]!` case the expression the format_str should be written to. +/// options. The first part of the tuple is `format_str` of the macros. The secund part of the tuple +/// is in the `write[ln]!` case the expression the `format_str` should be written to. /// /// Example: /// |
