From 4373ecc50ba454df9aaff08872f24d4e4984ca9d Mon Sep 17 00:00:00 2001 From: Jason Paryani Date: Sun, 18 Aug 2013 23:49:07 -0700 Subject: [PATCH] Fix spacing typo --- docs/quickstart.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/quickstart.rst b/docs/quickstart.rst index eb59a88..31bbf15 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -130,6 +130,7 @@ For the most part, you just treat them like structs:: Now the `school` field is the active part of the union, and we've assigned `'MIT'` to it. You can query which field is set in a union with `which()`, shown in `Reading Unions`_ Also, one weird case is for Void types in Unions (and in general, but Void is really only used in Unions). For these, you will have to assign `None` to them:: + bob.employment.unemployed = None Writing to a File