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 | |
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')
-rw-r--r-- | examples/cross_calculator/nim_commandline/nimcalculator.nim | 2 | ||||
-rw-r--r-- | examples/cross_todo/nim_commandline/nimtodo.nim | 4 | ||||
-rw-r--r-- | examples/talk/dsl.nim | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/examples/cross_calculator/nim_commandline/nimcalculator.nim b/examples/cross_calculator/nim_commandline/nimcalculator.nim index 69d62a90c..3f7674dbb 100644 --- a/examples/cross_calculator/nim_commandline/nimcalculator.nim +++ b/examples/cross_calculator/nim_commandline/nimcalculator.nim @@ -3,7 +3,7 @@ import backend, parseopt, strutils const - USAGE = """nimcalculator - Nimrod cross platform calculator + USAGE = """nimcalculator - Nim cross platform calculator (beta version, only integer addition is supported!) Usage: 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 diff --git a/examples/talk/dsl.nim b/examples/talk/dsl.nim index 4dfab5cd7..1034c99d4 100644 --- a/examples/talk/dsl.nim +++ b/examples/talk/dsl.nim @@ -28,6 +28,6 @@ html mainPage: title "now look at this" body: ul: - li "Nimrod is quite capable" + li "Nim is quite capable" echo mainPage() |