Skip to content

Commit 72d28ff

Browse files
autofix-ci[bot]anaisbetts
authored andcommitted
[autofix.ci] apply automated fixes
1 parent f01a099 commit 72d28ff

File tree

1 file changed

+6
-2
lines changed
  • crates/biome_formatter/src

1 file changed

+6
-2
lines changed

crates/biome_formatter/src/lib.rs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,9 +162,13 @@ impl LineEnding {
162162
Self::Cr => "\r",
163163
Self::Auto => {
164164
#[cfg(windows)]
165-
{ "\r\n" }
165+
{
166+
"\r\n"
167+
}
166168
#[cfg(not(windows))]
167-
{ "\n" }
169+
{
170+
"\n"
171+
}
168172
}
169173
}
170174
}

0 commit comments

Comments
 (0)