summary refs log tree commit diff stats
path: root/lib/system
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2012-06-23 16:32:14 +0200
committerAraq <rumpf_a@web.de>2012-06-23 16:32:14 +0200
commit3c985184876f47127dc055d7e7661f228e261d22 (patch)
tree7293f79a772c14dfd6b285af22050d325ef99e1f /lib/system
parent0e936cbabd6b97132778a2d0644195b3ba495d9d (diff)
downloadNim-3c985184876f47127dc055d7e7661f228e261d22.tar.gz
docgen2 improvements
Diffstat (limited to 'lib/system')
-rwxr-xr-xlib/system/atomics.nim2
-rw-r--r--lib/system/avltree.nim2
-rwxr-xr-xlib/system/inclrtl.nim4
-rwxr-xr-xlib/system/sysio.nim6
4 files changed, 7 insertions, 7 deletions
diff --git a/lib/system/atomics.nim b/lib/system/atomics.nim
index b2e1b6bba..127a8637f 100755
--- a/lib/system/atomics.nim
+++ b/lib/system/atomics.nim
@@ -7,7 +7,7 @@
 #    distribution, for details about the copyright.
 #
 
-## Atomic operations for Nimrod.
+# Atomic operations for Nimrod.
 
 when (defined(gcc) or defined(llvm_gcc)) and hasThreadSupport and 
     not defined(windows):
diff --git a/lib/system/avltree.nim b/lib/system/avltree.nim
index dcd6c917d..6a268b453 100644
--- a/lib/system/avltree.nim
+++ b/lib/system/avltree.nim
@@ -7,7 +7,7 @@
 #    distribution, for details about the copyright.
 #
 
-## not really an AVL tree anymore, but still balanced ...
+# not really an AVL tree anymore, but still balanced ...
 
 template IsBottom(n: PAvlNode): bool = n == bottom
 
diff --git a/lib/system/inclrtl.nim b/lib/system/inclrtl.nim
index f113430be..d9dfd3aa2 100755
--- a/lib/system/inclrtl.nim
+++ b/lib/system/inclrtl.nim
@@ -7,8 +7,8 @@
 #    distribution, for details about the copyright.
 #
 
-## Pragmas for RTL generation. Has to be an include, because user-defined
-## pragmas cannot be exported.
+# Pragmas for RTL generation. Has to be an include, because user-defined
+# pragmas cannot be exported.
 
 # There are 3 different usages:
 # 1) Ordinary imported code.
diff --git a/lib/system/sysio.nim b/lib/system/sysio.nim
index 0180bcdae..adcb32b42 100755
--- a/lib/system/sysio.nim
+++ b/lib/system/sysio.nim
@@ -8,9 +8,9 @@
 #
 
 
-## Nimrod's standard IO library. It contains high-performance
-## routines for reading and writing data to (buffered) files or
-## TTYs.
+# Nimrod's standard IO library. It contains high-performance
+# routines for reading and writing data to (buffered) files or
+# TTYs.
 
 {.push debugger:off .} # the user does not want to trace a part
                        # of the standard library!