We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 957241f + 138d29d commit bbdc871Copy full SHA for bbdc871
src/librustc_error_codes/error_codes/E0412.md
@@ -1,4 +1,4 @@
1
-The type name used is not in scope.
+A used type name is not in scope.
2
3
Erroneous code examples:
4
src/librustc_error_codes/error_codes/E0422.md
@@ -1,4 +1,5 @@
-You are trying to use an identifier that is either undefined or not a struct.
+An identifier that is neither defined nor a struct was used.
+
Erroneous code example:
5
```compile_fail,E0422
src/test/ui/lint/use_suggestion_json.stderr
@@ -2,7 +2,7 @@
"message": "cannot find type `Iter` in this scope",
"code": {
"code": "E0412",
- "explanation": "The type name used is not in scope.
+ "explanation": "A used type name is not in scope.
6
7
8
0 commit comments