summary refs log tree commit diff stats
path: root/lib/system
diff options
context:
space:
mode:
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!