Skip to content

Commit 9092f80

Browse files
committed
add a TODO
1 parent 3f2f8fc commit 9092f80

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cmd/commands/todos.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,12 @@ var todosCmd = &cobra.Command{
5555
// handleError(err)
5656

5757
t := todos.NewToDos(comments)
58-
for i, todo := range t {
58+
for i, todo := range t { // TODO: can we do this concurrently
5959
todo.FindBlame(commit)
6060
s.Suffix = fmt.Sprintf(" (%d/%d) %s: %s", i, len(t), filepath.Base(todo.FilePath), todo.String)
6161
// time.Sleep(100 * time.Millisecond)
6262
}
63+
6364
s.Stop()
6465
todos.WriteTodos(t, os.Stdout)
6566
},

0 commit comments

Comments
 (0)