Skip to content

Commit dbd58a1

Browse files
authored
Merge pull request rust-lang#790 from mappum/patch-1
Added missing comma to Unions reference
2 parents 25acdfa + ad89868 commit dbd58a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/items/unions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ union MyUnion {
1717
```
1818

1919
The key property of unions is that all fields of a union share common storage.
20-
As a result writes to one field of a union can overwrite its other fields, and
20+
As a result, writes to one field of a union can overwrite its other fields, and
2121
size of a union is determined by the size of its largest field.
2222

2323
## Initialization of a union

0 commit comments

Comments
 (0)