diff options
author | Mark Summerfield <mark@qtrac.eu> | 2017-03-14 14:06:06 +0000 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-03-14 15:06:06 +0100 |
commit | 3eff1b776533019e3e69b18f4ad06aa54438e761 (patch) | |
tree | 9bdcf7db875748857597ec22cf46bd3a6468797d | |
parent | 5de728a2df580c6c6b201ea78f49be51d389c808 (diff) | |
download | Nim-3eff1b776533019e3e69b18f4ad06aa54438e761.tar.gz |
Minor doc fix as per issue #5523 (#5533)
-rw-r--r-- | lib/pure/collections/critbits.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/pure/collections/critbits.nim b/lib/pure/collections/critbits.nim index bb234565b..519c58653 100644 --- a/lib/pure/collections/critbits.nim +++ b/lib/pure/collections/critbits.nim @@ -8,8 +8,9 @@ # ## This module implements a `crit bit tree`:idx: which is an efficient -## container for a set or a mapping of strings. Based on the excellent paper +## container for a sorted set of strings, or for a sorted mapping of strings. Based on the excellent paper ## by Adam Langley. +## (A crit bit tree is a form of `radix tree`:idx: or `patricia trie`:idx:.) include "system/inclrtl" |