We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a92b99 commit 57b517bCopy full SHA for 57b517b
src/librustc_error_codes/error_codes/E0747.md
@@ -1,4 +1,4 @@
1
-Generic arguments must be provided in the same order as the corresponding
+Generic arguments were not provided in the same order as the corresponding
2
generic parameters are declared.
3
4
Erroneous code example:
@@ -11,7 +11,7 @@ type X = S<(), 'static>; // error: the type argument is provided before the
11
```
12
13
The argument order should be changed to match the parameter declaration
14
-order, as in the following.
+order, as in the following:
15
16
17
struct S<'a, T>(&'a T);
0 commit comments