Skip to content

Commit

Permalink
[nit] Reformat TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
arielshaqed committed Nov 4, 2020
1 parent 3a51551 commit e369100
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions export/export_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ type TaskBody struct {
}

func PathToPointer(path string) (block.ObjectPointer, error) {
u, err := url.Parse(path) // TODO: add verify path on create task
u, err := url.Parse(path) // TODO(guys): add verify path on create task
if err != nil {
return block.ObjectPointer{}, err
}
Expand All @@ -55,7 +55,7 @@ func (h *Handler) copy(body *string) error {
if err != nil {
return err
}
return h.adapter.Copy(from, to) // todo(guys): add wait for copy in handler
return h.adapter.Copy(from, to) // TODO(guys): add wait for copy in handler
}

func (h *Handler) remove(body *string) error {
Expand Down Expand Up @@ -96,7 +96,7 @@ func (h *Handler) Handle(action string, body *string) parade.ActorResult {
case TouchAction:
err = h.touch(body)
case DoneAction:
// todo(guys): handle done action
// TODO(guys): handle done action
default:
err = errUnknownAction
}
Expand Down

0 comments on commit e369100

Please sign in to comment.