Unnamed repository; edit this file 'description' to name the repository.
-rw-r--r--helix-core/src/indent.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-core/src/indent.rs b/helix-core/src/indent.rs
index bdf0f405..f53f0602 100644
--- a/helix-core/src/indent.rs
+++ b/helix-core/src/indent.rs
@@ -180,7 +180,7 @@ pub fn auto_detect_indent_style(document_text: &Rope) -> Option<IndentStyle> {
.max()
.unwrap();
- // Return the the auto-detected result if we're confident enough in its
+ // Return the auto-detected result if we're confident enough in its
// accuracy, based on some heuristics.
if indent_freq >= 1 && (indent_freq_2 as f64 / indent_freq as f64) < 0.66 {
Some(match indent {