From 6d46372d21ce6c0a4df387529044b336a6c40a56 Mon Sep 17 00:00:00 2001 From: Adam Mielke Date: Mon, 21 Dec 2015 10:33:32 -0600 Subject: [PATCH] run gofmt --- instance.go | 1 + 1 file changed, 1 insertion(+) diff --git a/instance.go b/instance.go index f7bc065..e2e65ec 100644 --- a/instance.go +++ b/instance.go @@ -42,6 +42,7 @@ func stringify(s *string) string { // implement sort.Interface type sortable []*instance + func (s sortable) Len() int { return len(s) } func (s sortable) Swap(i, j int) { s[i], s[j] = s[j], s[i] }