From 4e79a83d4f3129ca2cf4295d5530f77a786e3269 Mon Sep 17 00:00:00 2001 From: "M. Maxwell Watson" Date: Sun, 13 Mar 2016 16:52:47 -0400 Subject: [PATCH] Update default todo task When standups are created the default task was work-related. Let's update that to something less specific to my job. --- src/Lib.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Lib.hs b/src/Lib.hs index 6deaabd..bc7d936 100644 --- a/src/Lib.hs +++ b/src/Lib.hs @@ -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 ()