I always forget to gofmt...

This commit is contained in:
Cheer Xiao 2014-01-29 21:17:04 +08:00
parent 1f6c69ba88
commit 72bafcae3d
3 changed files with 5 additions and 5 deletions

View File

@ -4,8 +4,8 @@ import (
"testing"
)
var wcwidthTests = []struct{
in rune
var wcwidthTests = []struct {
in rune
wanted int
}{
{'\u0301', 0}, // Combining acute accent

View File

@ -1,9 +1,9 @@
package eval
import (
"testing"
"syscall"
"strconv"
"syscall"
"testing"
)
func strsEqual(s1 []string, s2 []string) bool {

View File

@ -10,6 +10,6 @@ const (
)
type Context struct {
Typ ContextType
Typ ContextType
Prefix string
}