use push(char) instead of push_str(&str) to add single chars to strings
clippy::single-char-push-str
This commit is contained in:
parent
e11c667e4a
commit
9bb10cc907
11 changed files with 31 additions and 29 deletions
|
@ -2093,7 +2093,7 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
|
|||
_ => String::new(),
|
||||
};
|
||||
if !s.is_empty() {
|
||||
s.push_str(" ");
|
||||
s.push(' ');
|
||||
}
|
||||
s
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue