gofmt pass

This commit is contained in:
eanderton
2014-09-12 22:50:39 -04:00
parent 7f678451a8
commit d9e8f54d1c
11 changed files with 331 additions and 332 deletions
+14 -14
View File
@@ -2,7 +2,7 @@ package toml
import (
"fmt"
"strconv"
"strconv"
"unicode"
)
@@ -26,18 +26,18 @@ const (
tokenEqual
tokenLeftBracket
tokenRightBracket
tokenLeftParen
tokenRightParen
tokenLeftParen
tokenRightParen
tokenDoubleLeftBracket
tokenDoubleRightBracket
tokenDate
tokenKeyGroup
tokenKeyGroupArray
tokenComma
tokenColon
tokenColon
tokenDollar
tokenStar
tokenQuestion
tokenStar
tokenQuestion
tokenDot
tokenDotDot
tokenEOL
@@ -55,20 +55,20 @@ var tokenTypeNames = []string{
"=",
"[",
"[",
"(",
")",
"(",
")",
"]]",
"[[",
"Date",
"KeyGroup",
"KeyGroupArray",
",",
":",
"$",
"*",
"?",
".",
"..",
":",
"$",
"*",
"?",
".",
"..",
"EOL",
}