diff options
author | Aleksey Kladov <[email protected]> | 2020-08-12 16:06:49 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-08-12 16:14:23 +0100 |
commit | 50a02eb3593591a02677e1b56f24d7ff0459b9d0 (patch) | |
tree | a17351b1e3addea0a719f38990fea9289b6ef65e /crates/ra_syntax/src/ast | |
parent | 6dafc13f5f776980cd2560fb79d3d4790811c96d (diff) |
Rename ra_parser -> parser
Diffstat (limited to 'crates/ra_syntax/src/ast')
-rw-r--r-- | crates/ra_syntax/src/ast/node_ext.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_syntax/src/ast/node_ext.rs b/crates/ra_syntax/src/ast/node_ext.rs index 733e97877..50c1c157d 100644 --- a/crates/ra_syntax/src/ast/node_ext.rs +++ b/crates/ra_syntax/src/ast/node_ext.rs | |||
@@ -4,7 +4,7 @@ | |||
4 | use std::fmt; | 4 | use std::fmt; |
5 | 5 | ||
6 | use itertools::Itertools; | 6 | use itertools::Itertools; |
7 | use ra_parser::SyntaxKind; | 7 | use parser::SyntaxKind; |
8 | 8 | ||
9 | use crate::{ | 9 | use crate::{ |
10 | ast::{self, support, AstNode, NameOwner, SyntaxNode}, | 10 | ast::{self, support, AstNode, NameOwner, SyntaxNode}, |