Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clippy linting had some complaints: warning: you seem to be trying to move all elements into a new `String` --> dotenv/src/parse.rs:183:34 | 183 | ... &substitution_name.drain(..).collect::<String>(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(&mut substitution_name)` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#drain_collect = note: `#[warn(clippy::drain_collect)]` on by default All reported instances of that lint are fixed.
- Loading branch information