diff options
Diffstat (limited to 'crates/ra_analysis/src/lib.rs')
-rw-r--r-- | crates/ra_analysis/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_analysis/src/lib.rs b/crates/ra_analysis/src/lib.rs index 2f8f1dab5..22fff71ab 100644 --- a/crates/ra_analysis/src/lib.rs +++ b/crates/ra_analysis/src/lib.rs | |||
@@ -19,7 +19,7 @@ pub mod mock_analysis; | |||
19 | use std::{fmt, sync::Arc}; | 19 | use std::{fmt, sync::Arc}; |
20 | 20 | ||
21 | use ra_syntax::{SourceFileNode, TextRange, TextUnit}; | 21 | use ra_syntax::{SourceFileNode, TextRange, TextUnit}; |
22 | use ra_text_edit::AtomEdit; | 22 | use ra_text_edit::AtomTextEdit; |
23 | use ra_db::FileResolverImp; | 23 | use ra_db::FileResolverImp; |
24 | use rayon::prelude::*; | 24 | use rayon::prelude::*; |
25 | use relative_path::RelativePathBuf; | 25 | use relative_path::RelativePathBuf; |
@@ -121,7 +121,7 @@ pub struct SourceChange { | |||
121 | #[derive(Debug)] | 121 | #[derive(Debug)] |
122 | pub struct SourceFileNodeEdit { | 122 | pub struct SourceFileNodeEdit { |
123 | pub file_id: FileId, | 123 | pub file_id: FileId, |
124 | pub edits: Vec<AtomEdit>, | 124 | pub edits: Vec<AtomTextEdit>, |
125 | } | 125 | } |
126 | 126 | ||
127 | #[derive(Debug)] | 127 | #[derive(Debug)] |