Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes the following warnings: warning: can be more succinctly written as a byte str --> src/tag/format/enveloped.rs:89:43 | 89 | bytes_written += writer.write(&[b'\n'])?; | ^^^^^^^^ help: try: `b"\n"` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#byte_char_slices note: the lint level is defined here --> src/lib.rs:121:9 | 121 | #![deny(clippy::all)] | ^^^^^^^^^^^ = note: `#[warn(clippy::byte_char_slices)]` implied by `#[warn(clippy::all)]` warning: doc list item without indentation --> src/lib.rs:95:5 | 95 | //! `_Serato_/Metadata` directory instead. No support has been added yet. | ^ | = help: if this is supposed to be its own paragraph, add a blank line = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation = note: `#[warn(clippy::doc_lazy_continuation)]` implied by `#[warn(clippy::all)]` help: indent this line | 95 | //! `_Serato_/Metadata` directory instead. No support has been added yet. | ++
- Loading branch information