Merge pull request #543 from LnL7/push-char-warning
fix single-char-push-str clippy warning
This commit is contained in:
commit
aad9533d4b
|
@ -557,7 +557,7 @@ impl MetricCollector {
|
||||||
}})
|
}})
|
||||||
.collect();
|
.collect();
|
||||||
output.push_str(&values.join(\"\n\"));
|
output.push_str(&values.join(\"\n\"));
|
||||||
output.push_str(\"\n\");
|
output.push('\\n');
|
||||||
",
|
",
|
||||||
&mtype.metric_name(),
|
&mtype.metric_name(),
|
||||||
&mtype.description(),
|
&mtype.description(),
|
||||||
|
|
Loading…
Reference in a new issue