From b295f43e3f1968e3db21c6f5127554c885d2e3b8 Mon Sep 17 00:00:00 2001 From: YawarRaza7349 Date: Thu, 11 Jun 2015 19:41:27 -0400 Subject: Fix missing quotes in EBNF of type alias --- spec/04-basic-declarations-and-definitions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/04-basic-declarations-and-definitions.md b/spec/04-basic-declarations-and-definitions.md index 7fb5427d36..13ea72390f 100644 --- a/spec/04-basic-declarations-and-definitions.md +++ b/spec/04-basic-declarations-and-definitions.md @@ -298,7 +298,7 @@ the sequence of variable definitions ```ebnf Dcl ::= ‘type’ {nl} TypeDcl TypeDcl ::= id [TypeParamClause] [‘>:’ Type] [‘<:’ Type] -Def ::= type {nl} TypeDef +Def ::= ‘type’ {nl} TypeDef TypeDef ::= id [TypeParamClause] ‘=’ Type ``` -- cgit v1.2.3