Skip to content

Commit e8be119

Browse files
committed
Revert "replace all \r\n with just \n"
This reverts commit 2d5bde2.
1 parent 2d5bde2 commit e8be119

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/oxide/src/extractor/pre_processors/pre_processor.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ pub trait PreProcessor: Sized + Default {
131131
lines.insert(line_idx + 1, annotation_line);
132132
}
133133

134-
(lines.join("\n").trim_end().to_string() + "\n").replace("\r\n", "\n")
134+
lines.join("\n").trim_end().to_string() + "\n"
135135
}
136136
}
137137

0 commit comments

Comments
 (0)