Skip to content

Commit e2901c4

Browse files
committed
Fix incorrect description of E0690
1 parent 45d050c commit e2901c4

File tree

1 file changed

+1
-1
lines changed
  • src/librustc_error_codes/error_codes

1 file changed

+1
-1
lines changed

src/librustc_error_codes/error_codes/E0690.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ struct LengthWithUnit<U> { // error: transparent struct needs exactly one
1414
Because transparent structs are represented exactly like one of their fields at
1515
run time, said field must be uniquely determined. If there is no field, or if
1616
there are multiple fields, it is not clear how the struct should be represented.
17-
Note that fields of zero-typed types (e.g., `PhantomData`) can also exist
17+
Note that fields of zero-sized types (e.g., `PhantomData`) can also exist
1818
alongside the field that contains the actual data, they do not count for this
1919
error. When generic types are involved (as in the above example), an error is
2020
reported because the type parameter could be non-zero-sized.

0 commit comments

Comments
 (0)