aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorJeremy Kolb <[email protected]>2019-09-23 19:38:05 +0100
committerGitHub <[email protected]>2019-09-23 19:38:05 +0100
commit13d7fc1620c7af448c9f234f806f4aee342b3948 (patch)
tree682d4eefd274f7b0282163497d8718b7a5f44ea5 /crates
parent1808175f981433f474f14db31140344189770ba6 (diff)
Revert Self
Diffstat (limited to 'crates')
-rw-r--r--crates/ra_assists/src/ast_editor.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_assists/src/ast_editor.rs b/crates/ra_assists/src/ast_editor.rs
index fd94d6960..a710edce8 100644
--- a/crates/ra_assists/src/ast_editor.rs
+++ b/crates/ra_assists/src/ast_editor.rs
@@ -19,7 +19,7 @@ pub struct AstEditor<N: AstNode> {
19} 19}
20 20
21impl<N: AstNode> AstEditor<N> { 21impl<N: AstNode> AstEditor<N> {
22 pub fn new(node: N) -> Self 22 pub fn new(node: N) -> AstEditor<N>
23 where 23 where
24 N: Clone, 24 N: Clone,
25 { 25 {