summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2012-10-03 20:49:43 +0200
committerAraq <rumpf_a@web.de>2012-10-03 20:49:43 +0200
commit9fbee85cc9dd95c1f99e5b55a3d382196eabb7fc (patch)
tree5b38a0d41d876a4c35d979d09a4d3ba8ecd30722 /doc
parentb28fcdfa93ccf132b878e7dcd26e36d48f107212 (diff)
downloadNim-9fbee85cc9dd95c1f99e5b55a3d382196eabb7fc.tar.gz
first steps for compiler as a service
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/nimrodc.txt1
-rwxr-xr-xdoc/tut1.txt10
-rwxr-xr-xdoc/tut2.txt4
3 files changed, 9 insertions, 6 deletions
diff --git a/doc/nimrodc.txt b/doc/nimrodc.txt
index 7b969c3bb..117d226a6 100755
--- a/doc/nimrodc.txt
+++ b/doc/nimrodc.txt
@@ -159,6 +159,7 @@ Define               Effect
                      systems. See the documentation of the `gc <gc.html>`_ 
                      for further information.
 ``nodejs``           The EcmaScript target is actually ``node.js``.
+``ssl``              Enables OpenSSL support for the sockets module.
 ==================   =========================================================
 
 

diff --git a/doc/tut1.txt b/doc/tut1.txt
index 833d364df..c6e4edb82 100755
--- a/doc/tut1.txt
+++ b/doc/tut1.txt
@@ -16,10 +16,10 @@ Introduction
   </p></blockquote>
 
 
-This document is a tutorial for the programming language *Nimrod*. After this
-tutorial you will have a decent knowledge of Nimrod. This tutorial assumes
-that you are familiar with basic programming concepts like variables, types
-or statements.
+This document is a tutorial for the programming language *Nimrod*. 
+This tutorial assumes that you are familiar with basic programming concepts 
+like variables, types or statements but is kept very basic. The manual 
+contains many more examples of the advanced language features.
 
 
 
@@ -593,7 +593,7 @@ caller, a ``var`` parameter can be used:
 
 In the example, ``res`` and ``remainder`` are `var parameters`.
 Var parameters can be modified by the procedure and the changes are
-visible to the caller. Note that the above example would better make usage of
+visible to the caller. Note that the above example would better make use of
 a tuple as a return value instead of using var parameters.
 
 
diff --git a/doc/tut2.txt b/doc/tut2.txt
index 3882296be..149d444f0 100755
--- a/doc/tut2.txt
+++ b/doc/tut2.txt
@@ -16,7 +16,9 @@ Introduction
 
 
 This document is a tutorial for the advanced constructs of the *Nimrod*
-programming language.
+programming language. **Note that this document is somewhat obsolete as
+the `manual <manual.html>`_ contains many more examples of the advanced 
+language features.**
 
 
 Pragmas