Skip to content

Commit

Permalink
go fmt
Browse files Browse the repository at this point in the history
[no story]
  • Loading branch information
rtlong committed Sep 20, 2016
1 parent df82a2c commit 0301619
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions pivotal/client.go
Expand Up @@ -36,10 +36,10 @@ type Project struct {
}

type Story struct {
ID uint64
Name string
CurrentState string `json:"current_state"`
UpdatedAt time.Time `json:"updated_at"`
ID uint64
Name string
CurrentState string `json:"current_state"`
UpdatedAt time.Time `json:"updated_at"`
}

func MyStories(apiToken string) (stories []Story, err error) {
Expand Down
2 changes: 1 addition & 1 deletion ui/selection_ui.go
Expand Up @@ -132,7 +132,7 @@ func (s *SelectionUI) moveCursorToStart() {
}

func (s *SelectionUI) moveCursorToEnd() {
s.setCursor(len(s.options)-1)
s.setCursor(len(s.options) - 1)
}

func (s *SelectionUI) moveCursorUp() {
Expand Down

0 comments on commit 0301619

Please sign in to comment.