simplified write
This commit is contained in:
parent
842ffde43d
commit
f083c86890
1 changed files with 5 additions and 7 deletions
|
|
@ -1098,13 +1098,11 @@ impl HirDisplay for TypeRef {
|
|||
write!(f, "fn(")?;
|
||||
for index in 0..parameters.len() - 1 {
|
||||
let (param_name, param_type) = ¶meters[index];
|
||||
match param_name {
|
||||
Some(name) => {
|
||||
write!(f, "{}: ", name)?;
|
||||
param_type.hir_fmt(f)?;
|
||||
}
|
||||
None => param_type.hir_fmt(f)?,
|
||||
};
|
||||
if let Some(name) = param_name {
|
||||
write!(f, "{}: ", name)?;
|
||||
}
|
||||
|
||||
param_type.hir_fmt(f)?;
|
||||
|
||||
// Last index contains the return type so we stop writing commas on the second-to-last index
|
||||
if index != parameters.len() - 2 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue