about summary refs log tree commit diff
diff options
context:
space:
mode:
authorflip1995 <hello@philkrones.com>2018-11-27 16:59:52 +0100
committerflip1995 <hello@philkrones.com>2018-11-27 16:59:52 +0100
commit6eb8e6d7c59ba1dfb4f1e8d669ac8d7a5db06b68 (patch)
treed37287891b46608cfa4eba3869e5322c0a73217b
parentadc638ef334a9f34a16ebaee1c3430c3be04a790 (diff)
downloadrust-6eb8e6d7c59ba1dfb4f1e8d669ac8d7a5db06b68.tar.gz
rust-6eb8e6d7c59ba1dfb4f1e8d669ac8d7a5db06b68.zip
Fix dogfood error
-rw-r--r--clippy_lints/src/write.rs4
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:
 ///