summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorkonsumlamm <44230978+konsumlamm@users.noreply.github.com>2021-01-22 22:22:52 +0100
committerGitHub <noreply@github.com>2021-01-22 13:22:52 -0800
commitd5ce64883885336864f75458a3994debc43191a1 (patch)
tree18b9702ab3364289dddba7ff91e276e68104f470 /lib
parent8f62cd512c0c5ae9a27087ccf8b4f666611709e6 (diff)
downloadNim-d5ce64883885336864f75458a3994debc43191a1.tar.gz
Fix an RST issues introduced in #16777 (#16798)
Diffstat (limited to 'lib')
-rw-r--r--lib/pure/marshal.nim6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pure/marshal.nim b/lib/pure/marshal.nim
index e6c40254b..936b8fe94 100644
--- a/lib/pure/marshal.nim
+++ b/lib/pure/marshal.nim
@@ -10,14 +10,14 @@
 ## This module contains procs for `serialization`:idx: and `deserialization`:idx:
 ## of arbitrary Nim data structures. The serialization format uses `JSON`:idx:.
 ##
-## **Restriction**: For objects, their type is **not** serialized. This means
+## **Restriction:** For objects, their type is **not** serialized. This means
 ## essentially that it does not work if the object has some other runtime
 ## type than its compiletime type.
 ##
 ##
 ## Basic usage
 ## ===========
-
+##
 runnableExamples:
   type
     A = object of RootObj
@@ -35,7 +35,7 @@ runnableExamples:
   # marshal
   assert $$c == """{"f": 2}"""
 
-## **Note**: The `to` and `$$` operations are available at compile-time!
+## **Note:** The `to` and `$$` operations are available at compile-time!
 ##
 ##
 ## See also