summaryrefslogtreecommitdiff
path: root/top/main.go
diff options
context:
space:
mode:
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)
)