summary refs log tree commit diff stats
path: root/lib/system
diff options
context:
space:
mode:
authorGrzegorz Adam Hankiewicz <gradha@imap.cc>2014-08-05 17:07:43 +0200
committerGrzegorz Adam Hankiewicz <gradha@imap.cc>2014-08-05 17:07:43 +0200
commit1daa54e5a2abaa74d3c574fc9c451fb52a1ccaa2 (patch)
tree333f4b156c15af4c940a577f77fa3c760c7ff0dc /lib/system
parent8aa0be82d471c3ec24b8e798ea65748c67b0c5ce (diff)
downloadNim-1daa54e5a2abaa74d3c574fc9c451fb52a1ccaa2.tar.gz
Downgrades public module comments to private level.
This avoids the weird concatenation in the final system.html file which
doesn't make any sense.
Diffstat (limited to 'lib/system')
-rw-r--r--lib/system/atomics.nim2
-rw-r--r--lib/system/widestrs.nim4
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/system/atomics.nim b/lib/system/atomics.nim
index 43b3f0438..82ec5dbde 100644
--- 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.
 {.push stackTrace:off.}
 
 const someGcc = defined(gcc) or defined(llvm_gcc) or defined(clang)
diff --git a/lib/system/widestrs.nim b/lib/system/widestrs.nim
index e2a5d87e9..e9673888c 100644
--- a/lib/system/widestrs.nim
+++ b/lib/system/widestrs.nim
@@ -7,8 +7,8 @@
 #    distribution, for details about the copyright.
 #
 
-## Nimrod support for C/C++'s `wide strings`:idx:. This is part of the system
-## module! Do not import it directly!
+# Nimrod support for C/C++'s `wide strings`:idx:. This is part of the system
+# module! Do not import it directly!
 
 when not defined(NimString):
   {.error: "You must not import this module explicitly".}