diff options
-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 ## ============= ## |