diff options
author | Araq <rumpf_a@web.de> | 2015-10-21 02:18:38 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2015-10-21 02:18:38 +0200 |
commit | 3d512a73e61b27fc5a6de24f281d7f42db784884 (patch) | |
tree | 8ab2610aa1f51f63c3feff249d91b7b0350cb4aa | |
parent | d221241ac56bf14a38ac9587a6b88b9fae2585c3 (diff) | |
download | Nim-3d512a73e61b27fc5a6de24f281d7f42db784884.tar.gz |
documentation improvements; system.nim docs adapted to unix's braindead idea of how software should be packaged which didn't work in 1970 and surprise doesn't work in 2015 either
-rw-r--r-- | doc/tut2.txt | 2 | ||||
-rw-r--r-- | lib/system.nim | 8 |
2 files changed, 1 insertions, 9 deletions
diff --git a/doc/tut2.txt b/doc/tut2.txt index 83ea9ad33..db9e4cd58 100644 --- a/doc/tut2.txt +++ b/doc/tut2.txt @@ -215,7 +215,7 @@ postfix notation.) So "pure object oriented" code is easy to write: .. code-block:: nim - import strutils + import strutils, sequtils stdout.writeLine("Give a list of numbers (separated by spaces): ") stdout.write(stdin.readLine.split.map(parseInt).max.`$`) diff --git a/lib/system.nim b/lib/system.nim index 2fcfa2391..409691e6a 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -14,14 +14,6 @@ ## explicitly. Because of this there cannot be a user-defined module named ## ``system``. ## -## Exception hierarchy -## =================== -## -## For visual convenience here is the exception inheritance hierarchy -## represented as a tree: -## -## .. include:: ../doc/exception_hierarchy_fragment.txt -## ## Module system ## ============= ## |