diff --git a/standard/types.md b/standard/types.md index 31ccd4773..b3fb54f86 100644 --- a/standard/types.md +++ b/standard/types.md @@ -54,16 +54,13 @@ interface_type ; array_type - : non_array_type rank_specifier+ + : array_type nullable_type_annotation rank_specifier+ + | non_array_type rank_specifier+ ; non_array_type : value_type - | class_type - | interface_type - | delegate_type - | 'dynamic' - | type_parameter + | (class_type | interface_type | delegate_type | 'dynamic' | type_parameter) nullable_type_annotation? | pointer_type // unsafe code support ;