From 1f276bf80ee903119ed00167f2b787f3c6c1537e Mon Sep 17 00:00:00 2001 From: Brooks J Rady Date: Sat, 26 Apr 2025 17:28:17 +0100 Subject: [PATCH] fix(clippy): fix doc-list indentation for clippy --- src/lib.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 953b180..380e0fb 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -107,12 +107,12 @@ //! //! * `span` (default) - Includes spans in the various document-related structs. //! * `v1` - Adds support for v1 parsing. This will pull in the entire previous -//! version of `kdl-rs`, and so may be fairly heavy. +//! version of `kdl-rs`, and so may be fairly heavy. //! * `v1-fallback` - Implies `v1`. Makes it so the various `*::parse()` and -//! `FromStr` implementations try to parse their inputs as `v2`, and, if that -//! fails, try again with `v1`. For `KdlDocument`, a heuristic will be applied -//! if both `v1` and `v2` parsers fail, to pick which error(s) to return. For -//! other types, only the `v2` parser's errors will be returned. +//! `FromStr` implementations try to parse their inputs as `v2`, and, if that +//! fails, try again with `v1`. For `KdlDocument`, a heuristic will be applied +//! if both `v1` and `v2` parsers fail, to pick which error(s) to return. For +//! other types, only the `v2` parser's errors will be returned. //! //! ## Quirks //!