Skip to content

Commit

Permalink
Update default todo task
Browse files Browse the repository at this point in the history
When standups are created the default task was work-related. Let's
update that to something less specific to my job.
  • Loading branch information
mmwtsn committed Mar 13, 2016
1 parent 01ccff3 commit 4e79a83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Lib.hs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ new :: IO ()
new = promptCategory >>= \c ->
promptAction >>= \a ->
stashPath >>= \path ->
writeStandup path $ Standup [Task c a] [Task "attn" "do work"]
writeStandup path $ Standup [Task c a] [Task "life" "write Haskell!"]

-- Prompt user for Task and append it to the current standup's "done" Task
addDone :: IO ()
Expand Down

0 comments on commit 4e79a83

Please sign in to comment.