bugfix: fix LineEnding for windows

Sharun created

Change summary

crates/text/src/text.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

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;
     }
 }