aboutsummaryrefslogtreecommitdiffstats
path: root/todolist/app.go
diff options
context:
space:
mode:
authorGrant Ammons <gammons@gmail.com>2017-02-01 08:26:06 -0500
committerGitHub <noreply@github.com>2017-02-01 08:26:06 -0500
commitbe32789ec53ebe0a2141cf4d13696280ef79ee7f (patch)
treee7976b9bb5296276f41fb77ae70260c1643603a5 /todolist/app.go
parent4ca186caf6b6261c785028f7634b3c4eebd45578 (diff)
parent742730165c9db20e1d16c32fa42a692c124e5fdc (diff)
Merge pull request #29 from medicalwei/patch-1
Correct message on "todo ac"
Diffstat (limited to 'todolist/app.go')
-rw-r--r--todolist/app.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/todolist/app.go b/todolist/app.go
index 5f26d45..1ab6b20 100644
--- a/todolist/app.go
+++ b/todolist/app.go
@@ -138,7 +138,7 @@ func (a *App) ArchiveCompleted() {
}
}
a.Save()
- fmt.Println("All archived todos completed.")
+ fmt.Println("All completed todos have been archived.")
}
func (a *App) ListTodos(input string) {