Clean up E0747 explanation

This commit is contained in:
Guillaume Gomez 2020-08-06 13:33:54 +02:00
parent 3a92b9987a
commit 57b517bf1d

View File

@ -1,4 +1,4 @@
Generic arguments must be provided in the same order as the corresponding
Generic arguments were not provided in the same order as the corresponding
generic parameters are declared.
Erroneous code example:
@ -11,7 +11,7 @@ type X = S<(), 'static>; // error: the type argument is provided before the
```
The argument order should be changed to match the parameter declaration
order, as in the following.
order, as in the following:
```
struct S<'a, T>(&'a T);