diff options
author | Miran <narimiran@disroot.org> | 2021-07-28 14:31:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-28 14:31:13 +0200 |
commit | e616675c419552a85bdf0b47f47586852be8b5be (patch) | |
tree | 86e9910693d076d030b819e441b3710bd90add4c /lib/std/packedsets.nim | |
parent | a273ea70e8817e3509014a1b3dcd16a360ed400b (diff) | |
download | Nim-e616675c419552a85bdf0b47f47586852be8b5be.tar.gz |
various small documentation improvements (#18602)
Diffstat (limited to 'lib/std/packedsets.nim')
-rw-r--r-- | lib/std/packedsets.nim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/std/packedsets.nim b/lib/std/packedsets.nim index e209d2aae..b2ee917eb 100644 --- a/lib/std/packedsets.nim +++ b/lib/std/packedsets.nim @@ -12,10 +12,10 @@ ## ## Supports any Ordinal type. ## -## **Note**: Currently the assignment operator `=` for `PackedSet[A]` -## performs some rather meaningless shallow copy. Since Nim currently does -## not allow the assignment operator to be overloaded, use the `assign proc -## <#assign,PackedSet[A],PackedSet[A]>`_ to get a deep copy. +## .. note:: Currently the assignment operator `=` for `PackedSet[A]` +## performs some rather meaningless shallow copy. Since Nim currently does +## not allow the assignment operator to be overloaded, use the `assign proc +## <#assign,PackedSet[A],PackedSet[A]>`_ to get a deep copy. ## ## See also ## ======== |