From 75b1f9ee23e1702901d08707689690308d74953d Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Thu, 3 Sep 2020 12:18:46 +0200 Subject: Unify naming --- crates/syntax/src/ast/edit.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'crates/syntax') diff --git a/crates/syntax/src/ast/edit.rs b/crates/syntax/src/ast/edit.rs index 060b20966..823475333 100644 --- a/crates/syntax/src/ast/edit.rs +++ b/crates/syntax/src/ast/edit.rs @@ -260,16 +260,16 @@ impl ast::Path { impl ast::PathSegment { #[must_use] - pub fn with_type_args(&self, type_args: ast::GenericArgList) -> ast::PathSegment { - self._with_type_args(type_args, false) + pub fn with_generic_args(&self, type_args: ast::GenericArgList) -> ast::PathSegment { + self._with_generic_args(type_args, false) } #[must_use] pub fn with_turbo_fish(&self, type_args: ast::GenericArgList) -> ast::PathSegment { - self._with_type_args(type_args, true) + self._with_generic_args(type_args, true) } - fn _with_type_args(&self, type_args: ast::GenericArgList, turbo: bool) -> ast::PathSegment { + fn _with_generic_args(&self, type_args: ast::GenericArgList, turbo: bool) -> ast::PathSegment { if let Some(old) = self.generic_arg_list() { return self.replace_children( single_node(old.syntax().clone()), -- cgit v1.2.3