Skip to content

Commit 9873771

Browse files
committed
Rollup merge of #32964 - tshepang:comma, r=GuillaumeGomez
doc: add missing comma
2 parents 5bdbf8e + 571607f commit 9873771

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc/diagnostics.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ E0072: r##"
292292
When defining a recursive struct or enum, any use of the type being defined
293293
from inside the definition must occur behind a pointer (like `Box` or `&`).
294294
This is because structs and enums must have a well-defined size, and without
295-
the pointer the size of the type would need to be unbounded.
295+
the pointer, the size of the type would need to be unbounded.
296296
297297
Consider the following erroneous definition of a type for a list of bytes:
298298

0 commit comments

Comments
 (0)