diff options
author | Jjp137 <Jjp137@users.noreply.github.com> | 2019-10-17 20:13:04 -0700 |
---|---|---|
committer | Jjp137 <Jjp137@users.noreply.github.com> | 2019-10-22 17:59:12 -0700 |
commit | 3ad48069d37d42cc56e48399bb429dc50416e556 (patch) | |
tree | 00e592c116b8039210c2563e4b5e4777b8c5fae5 /lib/pure/collections/tables.nim | |
parent | e6d5379b3b0c5ea00ea59b74ed2ec35d2bd0a3da (diff) | |
download | Nim-3ad48069d37d42cc56e48399bb429dc50416e556.tar.gz |
Fix word wrapping
Diffstat (limited to 'lib/pure/collections/tables.nim')
-rw-r--r-- | lib/pure/collections/tables.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/pure/collections/tables.nim b/lib/pure/collections/tables.nim index a5ee74f8b..7d1633e7d 100644 --- a/lib/pure/collections/tables.nim +++ b/lib/pure/collections/tables.nim @@ -134,7 +134,8 @@ ## # 'a': 5, 'b': 2, 'c': 1, 'd': 1, 'r': 2} ## ## The same could have been achieved by manually iterating over a container -## and increasing each key's value with `inc proc<#inc,CountTable[A],A,Positive>`_: +## and increasing each key's value with `inc proc +## <#inc,CountTable[A],A,Positive>`_: ## ## .. code-block:: ## import tables |