diff options
author | Jan Hrastnik | 2021-06-13 10:27:27 +0000 |
---|---|---|
committer | Jan Hrastnik | 2021-06-16 15:09:03 +0000 |
commit | e4849f41beb2d35a4833a8b7de717b4f38b3f270 (patch) | |
tree | 794359aaeb8071f5d6f09d1357e8dd0e0064e833 /helix-core | |
parent | 9c419fe05cd51c96df29ac02e3dc5c73cae4ef97 (diff) |
fix typo
Diffstat (limited to 'helix-core')
-rw-r--r-- | helix-core/src/line_ending.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-core/src/line_ending.rs b/helix-core/src/line_ending.rs index 809dffc0..bcfecaf6 100644 --- a/helix-core/src/line_ending.rs +++ b/helix-core/src/line_ending.rs @@ -62,4 +62,4 @@ pub fn auto_detect_line_ending(doc: &Rope) -> Option<LineEnding> { #[cfg(target_os = "windows")] pub const DEFAULT_LINE_ENDING: LineEnding = LineEnding::Crlf; #[cfg(not(target_os = "windows"))] -pub const DEFAULT_LINE_ENDING: LineEnding = LineEnding::Lf;
\ No newline at end of file +pub const DEFAULT_LINE_ENDING: LineEnding = LineEnding::LF;
\ No newline at end of file |