summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorFlaviu Tamas <tamasflaviu@gmail.com>2015-02-03 21:22:28 -0500
committerFlaviu Tamas <tamasflaviu@gmail.com>2015-02-03 21:22:28 -0500
commitc3ca9bf79e1ec05ae99728f19d66869e1c675819 (patch)
tree276a245833bbfaae007371da4d2aeda8b7a7dc16 /lib
parent769652ac9060a9a382bae679d819f320eaec936b (diff)
downloadNim-c3ca9bf79e1ec05ae99728f19d66869e1c675819.tar.gz
Change formatting according to style guide
Diffstat (limited to 'lib')
-rw-r--r--lib/system.nim8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/system.nim b/lib/system.nim
index 958372bb5..a6939472b 100644
--- a/lib/system.nim
+++ b/lib/system.nim
@@ -343,10 +343,10 @@ type
     ##
     ## Each exception has to inherit from `Exception`. See the full `exception
     ## hierarchy`_.
-    parent*: ref Exception     ## parent exception (can be used as a stack)
-    name: cstring             ## The exception's name is its Nim identifier.
-                              ## This field is filled automatically in the
-                              ## ``raise`` statement.
+    parent*: ref Exception ## parent exception (can be used as a stack)
+    name: cstring ## The exception's name is its Nim identifier.
+                  ## This field is filled automatically in the
+                  ## ``raise`` statement.
     msg* {.exportc: "message".}: string ## the exception's message. Not
                                         ## providing an exception message 
                                         ## is bad style.