Skip to content

Commit 0c59b29

Browse files
committed
fix(fmt): cargo fmt
1 parent b097c7e commit 0c59b29

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/document.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
use miette::SourceSpan;
33
use std::fmt::Display;
44

5-
use crate::{FormatConfig, KdlError, KdlNode, KdlValue};
65
#[cfg(feature = "v1")]
76
use crate::KdlNodeFormat;
7+
use crate::{FormatConfig, KdlError, KdlNode, KdlValue};
88

99
/// Represents a KDL
1010
/// [`Document`](https://github.com/kdl-org/kdl/blob/main/SPEC.md#document).

src/v2_parser.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1611,9 +1611,9 @@ fn ws(input: &mut Input<'_>) -> PResult<()> {
16111611
}
16121612

16131613
static UNICODE_SPACES: [char; 18] = [
1614-
'\u{0009}', '\u{0020}', '\u{00A0}', '\u{1680}', '\u{2000}', '\u{2001}',
1615-
'\u{2002}', '\u{2003}', '\u{2004}', '\u{2005}', '\u{2006}', '\u{2007}',
1616-
'\u{2008}', '\u{2009}', '\u{200A}', '\u{202F}', '\u{205F}', '\u{3000}',
1614+
'\u{0009}', '\u{0020}', '\u{00A0}', '\u{1680}', '\u{2000}', '\u{2001}', '\u{2002}', '\u{2003}',
1615+
'\u{2004}', '\u{2005}', '\u{2006}', '\u{2007}', '\u{2008}', '\u{2009}', '\u{200A}', '\u{202F}',
1616+
'\u{205F}', '\u{3000}',
16171617
];
16181618

16191619
/// `unicode-space := <See Table>`

0 commit comments

Comments
 (0)