summary refs log tree commit diff stats
path: root/doc/sets_fragment.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/sets_fragment.txt')
-rw-r--r--doc/sets_fragment.txt15
1 files changed, 7 insertions, 8 deletions
diff --git a/doc/sets_fragment.txt b/doc/sets_fragment.txt
index 5a996e550..7e53f15f1 100644
--- a/doc/sets_fragment.txt
+++ b/doc/sets_fragment.txt
@@ -1,18 +1,17 @@
 The set type models the mathematical notion of a set. The set's basetype can
 only be an ordinal type of a certain size, namely:
 
-  * ``int8``-``int16``
-  * ``uint8``/``byte``-``uint16``
-  * ``char``
-  * ``enum``
+* ``int8``-``int16``
+* ``uint8``/``byte``-``uint16``
+* ``char``
+* ``enum``
 
-For signed integers the set's base type is defined to be in the
+or equivalent. For signed integers the set's base type is defined to be in the
 range ``0 .. MaxSetElements-1`` where ``MaxSetElements`` is currently always
 2^16.
 
-or equivalent. The reason is that sets are implemented as high
-performance bit vectors. Attempting to declare a set with a larger type will
-result in an error:
+The reason is that sets are implemented as high performance bit vectors.
+Attempting to declare a set with a larger type will result in an error:
 
 .. code-block:: nim