From 2271848acf9d0eeb09dd975a7d641c1b4c22930f Mon Sep 17 00:00:00 2001 From: Alejandro Mery Date: Sun, 27 Jun 2021 19:23:13 +0100 Subject: [PATCH] attic/ebnf: `go fmt` Signed-off-by: Alejandro Mery --- attic/ebnf/token/tokentype.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/attic/ebnf/token/tokentype.go b/attic/ebnf/token/tokentype.go index cd7242e..8e24760 100644 --- a/attic/ebnf/token/tokentype.go +++ b/attic/ebnf/token/tokentype.go @@ -4,7 +4,7 @@ package token type TokenType int const ( - TokenError TokenType = iota + 1 + TokenError TokenType = iota + 1 TokenEOF )