Merge pull request #3831 from ephja/nimrod-to-nim

nimrod -> nim
This commit is contained in:
Andreas Rumpf
2016-02-06 15:24:09 +01:00
15 changed files with 26 additions and 26 deletions

View File

@@ -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:

View File

@@ -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

View File

@@ -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()