mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-15 09:27:27 +00:00
Comment clean-up. Use display where possible
This commit is contained in:
parent
caa13b3f95
commit
e275f77b2c
1 changed files with 7 additions and 9 deletions
|
@ -160,12 +160,10 @@ fn ty_from_text(text: &str) -> ast::Type {
|
|||
|
||||
/// Related goto [link](https://doc.rust-lang.org/reference/items/type-aliases.html)
|
||||
/// Type Alias syntax is
|
||||
///
|
||||
/// ```
|
||||
/// TypeAlias :
|
||||
/// type IDENTIFIER GenericParams? ( : TypeParamBounds )? WhereClause? ( = Type WhereClause?)? ;
|
||||
/// ```
|
||||
///
|
||||
/// FIXME : ident should be of type ast::Ident
|
||||
pub fn ty_alias(
|
||||
ident: &str,
|
||||
|
@ -182,7 +180,7 @@ pub fn ty_alias(
|
|||
}
|
||||
|
||||
if let Some(list) = type_param_bounds {
|
||||
s.push_str(&format!(" : {}", &list.to_string()));
|
||||
s.push_str(&format!(" : {}", &list));
|
||||
}
|
||||
|
||||
if let Some(cl) = where_clause {
|
||||
|
|
Loading…
Reference in a new issue