Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix clippy::doc_lazy_continuation warning
``` error: doc list item missing indentation --> src/lib.rs:174:5 | 174 | /// does not already exist and it could not be created otherwise. The specific | ^ | = 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: `-D clippy::doc-lazy-continuation` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::doc_lazy_continuation)]` help: indent this line | 174 | /// does not already exist and it could not be created otherwise. The specific | ++ error: doc list item missing indentation --> src/lib.rs:175:5 | 175 | /// error conditions for when a directory is being created (after it is | ^ | = 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 help: indent this line | 175 | /// error conditions for when a directory is being created (after it is | ++ error: doc list item missing indentation --> src/lib.rs:176:5 | 176 | /// determined to not exist) are outlined by [`fs::create_dir`]. | ^ | = 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 help: indent this line | 176 | /// determined to not exist) are outlined by [`fs::create_dir`]. | ++ ```
- Loading branch information