Skip to content

Commit ad89868

Browse files
authored
Added missing comma to Unions reference
I spent a minute trying to parse this sentence until I realized it was missing a comma.
1 parent 25acdfa commit ad89868

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)