aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/algo/mod.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-10-15 17:55:32 +0100
committerAleksey Kladov <[email protected]>2018-10-15 17:55:32 +0100
commit171c176833c197bfd1b266940bd2a8c3d4d52cd5 (patch)
tree34df736f3dd474cd94bd3610c8c7f2374bbab628 /crates/ra_syntax/src/algo/mod.rs
parent6605dbaff3dd4104fd402cd6de7531c55d697358 (diff)
Run cargo fix
Diffstat (limited to 'crates/ra_syntax/src/algo/mod.rs')
-rw-r--r--crates/ra_syntax/src/algo/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_syntax/src/algo/mod.rs b/crates/ra_syntax/src/algo/mod.rs
index a6678093d..e686a5704 100644
--- a/crates/ra_syntax/src/algo/mod.rs
+++ b/crates/ra_syntax/src/algo/mod.rs
@@ -1,7 +1,7 @@
1pub mod walk; 1pub mod walk;
2pub mod visit; 2pub mod visit;
3 3
4use { 4use crate::{
5 SyntaxNodeRef, TextUnit, TextRange, 5 SyntaxNodeRef, TextUnit, TextRange,
6 text_utils::{contains_offset_nonstrict, is_subrange}, 6 text_utils::{contains_offset_nonstrict, is_subrange},
7}; 7};