summary refs log tree commit diff stats
path: root/doc/tut1.txt
diff options
context:
space:
mode:
authorKonstantin Molchanov <kmolchanov@cs-cart.com>2015-01-01 21:43:14 +0300
committerKonstantin Molchanov <kmolchanov@cs-cart.com>2015-01-01 21:43:14 +0300
commite2d2203779ed17174542e2ae4b64132cc8a5c7f0 (patch)
treecda67784ba6a37419dbda58efdd92b4f84aa6cb2 /doc/tut1.txt
parente54ab22bf9a67353e5a70f56e7801624d68ca4f5 (diff)
downloadNim-e2d2203779ed17174542e2ae4b64132cc8a5c7f0.tar.gz
Docs: Tutorial 1: Typo fixed.
Diffstat (limited to 'doc/tut1.txt')
-rw-r--r--doc/tut1.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tut1.txt b/doc/tut1.txt
index 46eda7ae3..472017563 100644
--- a/doc/tut1.txt
+++ b/doc/tut1.txt
@@ -169,7 +169,7 @@ Numbers
 Numerical literals are written as in most other languages. As a special twist,
 underscores are allowed for better readability: ``1_000_000`` (one million).
 A number that contains a dot (or 'e' or 'E') is a floating point literal:
-``1.0e9`` (one million). Hexadecimal literals are prefixed with ``0x``,
+``1.0e9`` (one billion). Hexadecimal literals are prefixed with ``0x``,
 binary literals with ``0b`` and octal literals with ``0o``. A leading zero
 alone does not produce an octal.