summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2014-10-19 20:05:01 +0200
committerAraq <rumpf_a@web.de>2014-10-19 20:05:01 +0200
commit2e4447ca852b4f462814e95c72c2b0dd7893bd6f (patch)
treeb7d1cc0c175eb6698d0dcc1e7463da4d2110aa95 /doc
parent4cca562c4a5386656c85008ba17865b67b479fc5 (diff)
downloadNim-2e4447ca852b4f462814e95c72c2b0dd7893bd6f.tar.gz
documentation improvements
Diffstat (limited to 'doc')
-rw-r--r--doc/manual.txt2
-rw-r--r--doc/tut2.txt12
2 files changed, 2 insertions, 12 deletions
diff --git a/doc/manual.txt b/doc/manual.txt
index 6aed72ce7..c150d27e2 100644
--- a/doc/manual.txt
+++ b/doc/manual.txt
@@ -4384,6 +4384,8 @@ helper distinct or object type has to be used for one pointer type.
 operator `=`
 ------------
 
+**Note**: Overriding the assignment operator has not yet been implemented.
+
 This operator is the assignment operator. Note that in the contexts 
 like ``let v = expr``, ``var v = expr``, ``parameter = defaultValue`` or for
 parameter passing no assignment is performed. The ``override`` pragma is
diff --git a/doc/tut2.txt b/doc/tut2.txt
index 2f42bcefc..582a6b3e4 100644
--- a/doc/tut2.txt
+++ b/doc/tut2.txt
@@ -438,18 +438,6 @@ module.  Example:
     echo "Got exception ", repr(e), " with message ", msg
 
 
-Exception hierarchy
--------------------
-
-If you want to create your own exceptions you can inherit from E_Base, but you
-can also inherit from one of the existing exceptions if they fit your purpose.
-The exception tree is:
-
-.. include:: exception_hierarchy_fragment.txt
-
-See the `system <system.html>`_ module for a description of each exception.
-
-
 Annotating procs with raised exceptions
 ---------------------------------------