about summary refs log tree commit diff
diff options
context:
space:
mode:
-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:
 ///