diff options
Diffstat (limited to 'doc/manual.rst')
-rw-r--r-- | doc/manual.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/manual.rst b/doc/manual.rst index bce51e3fd..114a88a76 100644 --- a/doc/manual.rst +++ b/doc/manual.rst @@ -4140,7 +4140,7 @@ A custom exception is a custom type: .. code-block:: nim type LoadError* = object of Exception - + Ending the custom exception's name with ``Error`` is recommended. Custom exceptions can be raised like any others, e.g.: @@ -6504,7 +6504,7 @@ alignment requirement of the type are ignored. type sseType = object - sseData {.align(16).}: array[4,float32] + sseData {.align(16).}: array[4, float32] # every object will be aligned to 128-byte boundary Data = object |