diff options
Diffstat (limited to 'crates/syntax')
-rw-r--r-- | crates/syntax/src/ast/make.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/syntax/src/ast/make.rs b/crates/syntax/src/ast/make.rs index 5a6687397..2289d8f3e 100644 --- a/crates/syntax/src/ast/make.rs +++ b/crates/syntax/src/ast/make.rs | |||
@@ -475,8 +475,8 @@ pub fn param_list( | |||
475 | }; | 475 | }; |
476 | ast_from_text(&list) | 476 | ast_from_text(&list) |
477 | } | 477 | } |
478 | 478 | // FIXME: s/&str/ast:Name | |
479 | pub fn generic_param(name: String, ty: Option<ast::TypeBoundList>) -> ast::GenericParam { | 479 | pub fn generic_param(name: &str, ty: Option<ast::TypeBoundList>) -> ast::GenericParam { |
480 | let bound = match ty { | 480 | let bound = match ty { |
481 | Some(it) => format!(": {}", it), | 481 | Some(it) => format!(": {}", it), |
482 | None => String::new(), | 482 | None => String::new(), |