Skip to content

Commit e3223cd

Browse files
authored
Lint
1 parent dcfb6e1 commit e3223cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graph.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ func String(g Iterator) string {
8989
})
9090
}
9191
edges := make([]edge, 0, len(count))
92-
for e, _ := range count {
92+
for e := range count {
9393
edges = append(edges, e)
9494
}
9595
// Sort lexicographically on (v, w, c).

0 commit comments

Comments
 (0)