summaryrefslogtreecommitdiff
path: root/top/main.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-10-08 13:42:53 +0200
committerDimitri Sokolyuk <demon@dim13.org>2015-10-08 13:42:53 +0200
commit1728d9a2b79ec4f6b7956a63f1d312d9c41e7d4f (patch)
tree1a033d8e3180c8b12169f1d1e5d89281205f44a7 /top/main.go
parent35fd470c006adedd6add7438e17ae301ddbf0f94 (diff)
gofmt
Diffstat (limited to 'top/main.go')
-rw-r--r--top/main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/top/main.go b/top/main.go
index e5b0737..6632b8e 100644
--- a/top/main.go
+++ b/top/main.go
@@ -2,12 +2,12 @@ package main
import (
"bufio"
+ "encoding/gob"
"fmt"
"log"
"os"
"regexp"
"sort"
- "encoding/gob"
)
const (
@@ -16,7 +16,7 @@ const (
)
var (
- re = regexp.MustCompile(`[^ ]+ <.([^ ]+)> .*`)
+ re = regexp.MustCompile(`[^ ]+ <.([^ ]+)> .*`)
score = make(map[string]int)
)