diff options
author | Aleksey Kladov <[email protected]> | 2020-09-03 11:18:46 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-09-03 11:18:46 +0100 |
commit | 75b1f9ee23e1702901d08707689690308d74953d (patch) | |
tree | bcf309cf28a5b00fc56115f82aee33f9998e24d2 /crates/assists/src | |
parent | 5328792feaf16f58f4c8962a70c5fcd306fa46a4 (diff) |
Unify naming
Diffstat (limited to 'crates/assists/src')
-rw-r--r-- | crates/assists/src/ast_transform.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/assists/src/ast_transform.rs b/crates/assists/src/ast_transform.rs index 5216862ba..bbcd2d488 100644 --- a/crates/assists/src/ast_transform.rs +++ b/crates/assists/src/ast_transform.rs | |||
@@ -166,7 +166,7 @@ impl<'a> QualifyPaths<'a> { | |||
166 | .map(|arg_list| apply(self, arg_list)); | 166 | .map(|arg_list| apply(self, arg_list)); |
167 | if let Some(type_args) = type_args { | 167 | if let Some(type_args) = type_args { |
168 | let last_segment = path.segment().unwrap(); | 168 | let last_segment = path.segment().unwrap(); |
169 | path = path.with_segment(last_segment.with_type_args(type_args)) | 169 | path = path.with_segment(last_segment.with_generic_args(type_args)) |
170 | } | 170 | } |
171 | 171 | ||
172 | Some(path.syntax().clone()) | 172 | Some(path.syntax().clone()) |