crates/text/src/text.rs 🔗
@@ -2634,7 +2634,7 @@ impl Default for LineEnding {
return Self::Unix;
#[cfg(not(unix))]
- return Self::CRLF;
+ return Self::Windows;
}
}
Sharun created
crates/text/src/text.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
@@ -2634,7 +2634,7 @@ impl Default for LineEnding {
return Self::Unix;
#[cfg(not(unix))]
- return Self::CRLF;
+ return Self::Windows;
}
}