bugfix: fix LineEnding for windows

This commit is contained in:
Sharun 2024-01-25 03:16:42 -05:00 committed by GitHub
parent dd07d2f8a2
commit 0c4679f892
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2634,7 +2634,7 @@ impl Default for LineEnding {
return Self::Unix;
#[cfg(not(unix))]
return Self::CRLF;
return Self::Windows;
}
}