diff options
author | Federico Ceratto <federico.ceratto@gmail.com> | 2015-02-15 16:20:32 +0000 |
---|---|---|
committer | Federico Ceratto <federico.ceratto@gmail.com> | 2015-02-15 16:20:32 +0000 |
commit | 657dca5c3b26a088ac291e06308d44d5e52c162f (patch) | |
tree | a3009486a0157d0a5d38bfabff3b041cab3e3779 /lib/pure/collections/tables.nim | |
parent | c95f6f117a665bc6d3d64ae8703459759973f63f (diff) | |
download | Nim-657dca5c3b26a088ac291e06308d44d5e52c162f.tar.gz |
Fix typos
Diffstat (limited to 'lib/pure/collections/tables.nim')
-rw-r--r-- | lib/pure/collections/tables.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/collections/tables.nim b/lib/pure/collections/tables.nim index 25fe306c0..c82f1230a 100644 --- a/lib/pure/collections/tables.nim +++ b/lib/pure/collections/tables.nim @@ -11,7 +11,7 @@ ## (also often named `dictionary`:idx: in other programming languages) that is ## a mapping from keys to values. ``Table`` is the usual hash table, ## ``OrderedTable`` is like ``Table`` but remembers insertion order -## and ``CountTable`` is a mapping from a key to its number of occurances. +## and ``CountTable`` is a mapping from a key to its number of occurrences. ## For consistency with every other data type in Nim these have **value** ## semantics, this means that ``=`` performs a copy of the hash table. ## For **reference** semantics use the ``Ref`` variant: ``TableRef``, |