summary refs log tree commit diff stats
path: root/lib/pure
diff options
context:
space:
mode:
authorringabout <43030857+ringabout@users.noreply.github.com>2023-02-08 18:27:44 +0800
committerGitHub <noreply@github.com>2023-02-08 18:27:44 +0800
commitcbb6001d1e2e484986387e815a61339cd3dc916f (patch)
treec8d1c8c30d6ed5c27bade63e678f6684f20a4017 /lib/pure
parent9f651f05d56407f63b9334917fecad975bdd49b4 (diff)
downloadNim-cbb6001d1e2e484986387e815a61339cd3dc916f.tar.gz
fixes backticks in the documentation (#21340)
Diffstat (limited to 'lib/pure')
-rw-r--r--lib/pure/collections/tables.nim4
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: