aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorYerkebulan Tulibergenov <[email protected]>2019-01-16 04:29:37 +0000
committerYerkebulan Tulibergenov <[email protected]>2019-01-16 04:29:37 +0000
commit67ddd3359817f0a1254005e4c2dc921eed5e7ad9 (patch)
treeb31adbf41c777d29a7d3e3f39b7076848cab59e5 /crates
parentde7c0f814c650799f92fdd42384f7b93740633dc (diff)
don't need SEMI any more
Diffstat (limited to 'crates')
-rw-r--r--crates/ra_ide_api_light/src/assists/introduce_variable.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_ide_api_light/src/assists/introduce_variable.rs b/crates/ra_ide_api_light/src/assists/introduce_variable.rs
index 922f71254..3e4434c23 100644
--- a/crates/ra_ide_api_light/src/assists/introduce_variable.rs
+++ b/crates/ra_ide_api_light/src/assists/introduce_variable.rs
@@ -1,6 +1,6 @@
1use ra_syntax::{ 1use ra_syntax::{
2 ast::{self, AstNode}, 2 ast::{self, AstNode},
3 SyntaxKind::{WHITESPACE, SEMI}, 3 SyntaxKind::WHITESPACE,
4 SyntaxNode, TextUnit, 4 SyntaxNode, TextUnit,
5}; 5};
6 6