diff options
Diffstat (limited to 'crates/ra_assists/src/ast_builder.rs')
-rw-r--r-- | crates/ra_assists/src/ast_builder.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_assists/src/ast_builder.rs b/crates/ra_assists/src/ast_builder.rs index f6409085a..9a62b96b3 100644 --- a/crates/ra_assists/src/ast_builder.rs +++ b/crates/ra_assists/src/ast_builder.rs | |||
@@ -44,7 +44,7 @@ impl Make<ast::Expr> { | |||
44 | } | 44 | } |
45 | 45 | ||
46 | impl Make<ast::NameRef> { | 46 | impl Make<ast::NameRef> { |
47 | pub fn new(text: &str) -> ast::NameRef { | 47 | pub fn from(text: &str) -> ast::NameRef { |
48 | ast_node_from_file_text(&format!("fn f() {{ {}; }}", text)) | 48 | ast_node_from_file_text(&format!("fn f() {{ {}; }}", text)) |
49 | } | 49 | } |
50 | } | 50 | } |