diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-02-06 15:24:09 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2016-02-06 15:24:09 +0100 |
commit | 981974ab11fa30b5dc43b24eb20d2a7efccf8393 (patch) | |
tree | 226845110725cc2982757ebd17b0e749b389a0c9 /examples/cross_todo | |
parent | 03f4aa23d767c3d4a37980377d757b4df90d6778 (diff) | |
parent | f8d98700ac48423f399def1dbb2b4acca8b5c1fe (diff) | |
download | Nim-981974ab11fa30b5dc43b24eb20d2a7efccf8393.tar.gz |
Merge pull request #3831 from ephja/nimrod-to-nim
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 339846071..c8993b2c8 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: DbConn) = ## 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 |