Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: Push single character instead of string
This solves clippy warnings like this: ``` error: calling `push_str()` using a single-character string literal --> src/common.rs:222:13 | 222 | result.push_str("\n"); | ^^^^^^^^^^^^^^^^^^^^^ help: consider using `push` with a character literal: `result.push('\n')` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_char_add_str = note: `-D clippy::single-char-add-str` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::single_char_add_str)]` ```
- Loading branch information