We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2dcf54f + 4bf6734 commit 89feaf6Copy full SHA for 89feaf6
src/librustc_error_codes/error_codes/E0436.md
@@ -1,5 +1,4 @@
1
-The functional record update syntax is only allowed for structs. (Struct-like
2
-enum variants don't qualify, for example.)
+The functional record update syntax was used on something other than a struct.
3
4
Erroneous code example:
5
@@ -24,7 +23,9 @@ fn one_up_competitor(competitor_frequency: PublicationFrequency)
24
23
}
25
```
26
27
-Rewrite the expression without functional record update syntax:
+The functional record update syntax is only allowed for structs (struct-like
+enum variants don't qualify, for example). To fix the previous code, rewrite the
28
+expression without functional record update syntax:
29
30
31
enum PublicationFrequency {
0 commit comments