Unnamed repository; edit this file 'description' to name the repository.
Pub use TextRange, TextSize
Ariel Davis 2023-05-06
parent 5e2c68f · commit 71c4a89
-rw-r--r--lib/line-index/src/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/line-index/src/lib.rs b/lib/line-index/src/lib.rs
index 9ce3010231..73aea0ea3c 100644
--- a/lib/line-index/src/lib.rs
+++ b/lib/line-index/src/lib.rs
@@ -6,7 +6,8 @@
mod tests;
use nohash_hasher::IntMap as NoHashHashMap;
-use text_size::{TextRange, TextSize};
+
+pub use text_size::{TextRange, TextSize};
/// Maps flat [`TextSize`] offsets into `(line, column)` representation.
#[derive(Clone, Debug, PartialEq, Eq)]