diff options
| -rw-r--r-- | crates/ide-db/src/line_index.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide-db/src/line_index.rs b/crates/ide-db/src/line_index.rs index c17ca95f5d0..16814a1e636 100644 --- a/crates/ide-db/src/line_index.rs +++ b/crates/ide-db/src/line_index.rs @@ -7,7 +7,7 @@ use syntax::{TextRange, TextSize}; #[derive(Clone, Debug, PartialEq, Eq)] pub struct LineIndex { - /// Offset the the beginning of each line, zero-based. + /// Offset the beginning of each line, zero-based. pub(crate) newlines: Vec<TextSize>, /// List of non-ASCII characters on each line. pub(crate) line_wide_chars: NoHashHashMap<u32, Vec<WideChar>>, |
