aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_text_edit
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-05-06 10:31:26 +0100
committerAleksey Kladov <[email protected]>2020-05-06 10:32:34 +0100
commit3850b1c0860a075f1fd569577c2a2fecd1fc2f0c (patch)
treefd9a78d80ae77f1fb706ba48bff0195be24bf5d6 /crates/ra_text_edit
parentbeb35c3ecb4aa5139571aba70f7364d135302775 (diff)
Lift SourceChange to the ra_ide_db
Diffstat (limited to 'crates/ra_text_edit')
-rw-r--r--crates/ra_text_edit/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_text_edit/src/lib.rs b/crates/ra_text_edit/src/lib.rs
index 7138bbc65..64b67f2ad 100644
--- a/crates/ra_text_edit/src/lib.rs
+++ b/crates/ra_text_edit/src/lib.rs
@@ -4,7 +4,7 @@
4//! so `TextEdit` is the ultimate representation of the work done by 4//! so `TextEdit` is the ultimate representation of the work done by
5//! rust-analyzer. 5//! rust-analyzer.
6 6
7use text_size::{TextRange, TextSize}; 7pub use text_size::{TextRange, TextSize};
8 8
9/// `InsertDelete` -- a single "atomic" change to text 9/// `InsertDelete` -- a single "atomic" change to text
10/// 10///