From ad8986882c6b069cfbdca6103746f5a3e8cb9d5b Mon Sep 17 00:00:00 2001 From: Matt Bell Date: Fri, 10 Apr 2020 00:23:13 -0700 Subject: [PATCH] Added missing comma to Unions reference I spent a minute trying to parse this sentence until I realized it was missing a comma. --- src/items/unions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/items/unions.md b/src/items/unions.md index 7555a47b0009e..0727b1bd1c5a6 100644 --- a/src/items/unions.md +++ b/src/items/unions.md @@ -17,7 +17,7 @@ union MyUnion { ``` The key property of unions is that all fields of a union share common storage. -As a result writes to one field of a union can overwrite its other fields, and +As a result, writes to one field of a union can overwrite its other fields, and size of a union is determined by the size of its largest field. ## Initialization of a union