Make wording less confusing

This commit is contained in:
varkor 2019-09-10 22:35:10 +01:00
parent 14e6947fa4
commit ef62e05062
5 changed files with 17 additions and 23 deletions

View file

@ -1,7 +1,7 @@
extern {
fn sqrt<T>(f: T) -> T;
//~^ ERROR foreign items may not have type parameters [E0044]
//~| HELP use specialization instead of type parameters by replacing them with concrete types
//~| HELP replace the type parameters with concrete types
//~| NOTE can't have type parameters
}

View file

@ -4,7 +4,7 @@ error[E0044]: foreign items may not have type parameters
LL | fn sqrt<T>(f: T) -> T;
| ^^^^^^^^^^^^^^^^^^^^^^ can't have type parameters
|
= help: use specialization instead of type parameters by replacing them with concrete types like `u32`
= help: replace the type parameters with concrete types like `u32`
error: aborting due to previous error