Command: `gofmt -l -s -w .`
This commit is contained in:
Caleb Spare
2013-11-24 13:48:57 -08:00
committed by spf13
parent 1abc2f0b86
commit 6da23f7449
8 changed files with 30 additions and 32 deletions

View File

@@ -185,7 +185,7 @@ func Tokenize(in string) interface{} {
// No closing "... just make remainder the final token
if inQuote && i == len(first) {
final = append(final, first[start:len(first)]...)
final = append(final, first[start:]...)
}
}