Skip to content

Commit

Permalink
Fix "too" -> "foo" typo in format.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
ama0 committed Nov 14, 2018
1 parent 973e70c commit 93324f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clippy_lints/src/format.rs
Expand Up @@ -21,7 +21,7 @@ use crate::rustc_errors::Applicability;
/// **What it does:** Checks for the use of `format!("string literal with no
/// argument")` and `format!("{}", foo)` where `foo` is a string.
///
/// **Why is this bad?** There is no point of doing that. `format!("too")` can
/// **Why is this bad?** There is no point of doing that. `format!("foo")` can
/// be replaced by `"foo".to_owned()` if you really need a `String`. The even
/// worse `&format!("foo")` is often encountered in the wild. `format!("{}",
/// foo)` can be replaced by `foo.clone()` if `foo: String` or `foo.to_owned()`
Expand Down

0 comments on commit 93324f1

Please sign in to comment.