From 0e21baa45c8befaa6e10ced04a9b8d43ef5c26c9 Mon Sep 17 00:00:00 2001 From: gutmet Date: Mon, 27 Apr 2020 19:41:24 +0200 Subject: [PATCH] correction in EBNF --- README | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README b/README index 7540ed8..e577e2d 100644 --- a/README +++ b/README @@ -25,9 +25,9 @@ endianness = ("little endian" | "big endian") '\n'. definition = [ IDENT ] ':' type '\n'. type = bytefield - | int8 | int16 | int32 | int64 - | uint8 | uint16 | uint32 | uint64 - | float32 | float64 + | "int8" | "int16" | "int32" | "int64" + | "uint8" | "uint16" | "uint32" | "uint64" + | "float32" | "float64" . bytefield = "byte[" ( INTEGER | IDENT ) "]".