diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2023-02-08 18:27:44 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-08 18:27:44 +0800 |
commit | cbb6001d1e2e484986387e815a61339cd3dc916f (patch) | |
tree | c8d1c8c30d6ed5c27bade63e678f6684f20a4017 /lib/pure | |
parent | 9f651f05d56407f63b9334917fecad975bdd49b4 (diff) | |
download | Nim-cbb6001d1e2e484986387e815a61339cd3dc916f.tar.gz |
fixes backticks in the documentation (#21340)
Diffstat (limited to 'lib/pure')
-rw-r--r-- | lib/pure/collections/tables.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/collections/tables.nim b/lib/pure/collections/tables.nim index cd08dcb9a..57a0107fd 100644 --- a/lib/pure/collections/tables.nim +++ b/lib/pure/collections/tables.nim @@ -2393,7 +2393,7 @@ proc contains*[A](t: CountTable[A], key: A): bool = return hasKey[A](t, key) proc getOrDefault*[A](t: CountTable[A], key: A; default: int = 0): int = - ## Retrieves the value at `t[key]` if`key` is in `t`. Otherwise, the + ## Retrieves the value at `t[key]` if `key` is in `t`. Otherwise, the ## integer value of `default` is returned. ## ## See also: @@ -2713,7 +2713,7 @@ proc contains*[A](t: CountTableRef[A], key: A): bool = return hasKey[A](t, key) proc getOrDefault*[A](t: CountTableRef[A], key: A, default: int): int = - ## Retrieves the value at `t[key]` if`key` is in `t`. Otherwise, the + ## Retrieves the value at `t[key]` if `key` is in `t`. Otherwise, the ## integer value of `default` is returned. ## ## See also: |