diff options
Diffstat (limited to 'lib/system')
-rwxr-xr-x | lib/system/atomics.nim | 2 | ||||
-rw-r--r-- | lib/system/avltree.nim | 2 | ||||
-rwxr-xr-x | lib/system/inclrtl.nim | 4 | ||||
-rwxr-xr-x | lib/system/sysio.nim | 6 |
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! |