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 //!