From 0cbc320d18ca54efd1b5929c05d09f03462ef8e0 Mon Sep 17 00:00:00 2001 From: Ross Light Date: Tue, 8 Oct 2019 12:37:16 -0700 Subject: [PATCH] Mark EnumValuesDefinition as required in EnumTypeDefinition --- spec/Section 3 -- Type System.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/Section 3 -- Type System.md b/spec/Section 3 -- Type System.md index 8940956f7..9ef456766 100644 --- a/spec/Section 3 -- Type System.md +++ b/spec/Section 3 -- Type System.md @@ -1244,7 +1244,7 @@ Union type extensions have the potential to be invalid if incorrectly defined. ## Enums -EnumTypeDefinition : Description? enum Name Directives[Const]? EnumValuesDefinition? +EnumTypeDefinition : Description? enum Name Directives[Const]? EnumValuesDefinition EnumValuesDefinition : { EnumValueDefinition+ }