Skip to content

Commit

Permalink
Fix an RST issues introduced in #16777 (#16798)
Browse files Browse the repository at this point in the history
  • Loading branch information
konsumlamm authored Jan 22, 2021
1 parent 8f62cd5 commit d5ce648
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/pure/marshal.nim
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit d5ce648

Please sign in to comment.