summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--lib/system.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system.nim b/lib/system.nim
index 12c5c6303..958372bb5 100644
--- a/lib/system.nim
+++ b/lib/system.nim
@@ -343,7 +343,7 @@ type
     ##
     ## Each exception has to inherit from `Exception`. See the full `exception
     ## hierarchy`_.
-    parent: ref Exception     ## parent exception (can be used as a stack)
+    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.
d='n63' href='#n63'>63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78