diff options
author | Erik Johansson Andersson <ephja@yandex.com> | 2016-02-05 19:11:43 +0100 |
---|---|---|
committer | Erik Johansson Andersson <ephja@yandex.com> | 2016-02-05 19:11:43 +0100 |
commit | f8d98700ac48423f399def1dbb2b4acca8b5c1fe (patch) | |
tree | abad731e6c40cef7e62e676aa43d818181c82f34 /examples/cross_todo | |
parent | ac1e7a245093bb28a1a366f1e169ab50e6660c94 (diff) | |
download | Nim-f8d98700ac48423f399def1dbb2b4acca8b5c1fe.tar.gz |
nimrod -> nim
Diffstat (limited to 'examples/cross_todo')
-rw-r--r-- | examples/cross_todo/nim_commandline/nimtodo.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/cross_todo/nim_commandline/nimtodo.nim b/examples/cross_todo/nim_commandline/nimtodo.nim index 4ab17e7a2..d4a9438c6 100644 --- a/examples/cross_todo/nim_commandline/nimtodo.nim +++ b/examples/cross_todo/nim_commandline/nimtodo.nim @@ -3,7 +3,7 @@ import backend, db_sqlite, os, parseopt, parseutils, strutils, times const - USAGE = """nimtodo - Nimrod cross platform todo manager + USAGE = """nimtodo - Nim cross platform todo manager Usage: nimtodo [command] [list options] @@ -195,7 +195,7 @@ proc generateDatabaseRows(conn: TDbConn) = ## Adds some rows to the database ignoring errors. discard conn.addTodo(1, "Watch another random youtube video") discard conn.addTodo(2, "Train some starcraft moves for the league") - discard conn.addTodo(3, "Spread the word about Nimrod") + discard conn.addTodo(3, "Spread the word about Nim") discard conn.addTodo(4, "Give fruit superavit to neighbours") var todo = conn.addTodo(4, "Send tax form through snail mail") todo.isDone = true |