summary refs log tree commit diff stats
path: root/lib/impure
diff options
context:
space:
mode:
authorAndrey Makarov <ph.makarov@gmail.com>2022-11-14 10:43:29 +0300
committerGitHub <noreply@github.com>2022-11-14 15:43:29 +0800
commit3eef0491a8ef904abdfe96ab97c566c794305d80 (patch)
treeac0574af2095db0fc7cb1f55e26d1dd73ed73bf2 /lib/impure
parent7db0d2bb5804d69e21dc260367c1fdc3af2a9215 (diff)
downloadNim-3eef0491a8ef904abdfe96ab97c566c794305d80.tar.gz
fix a few "broken link" warnings (#20837)
Diffstat (limited to 'lib/impure')
-rw-r--r--lib/impure/re.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/impure/re.nim b/lib/impure/re.nim
index 8b9de0c68..c647b9442 100644
--- a/lib/impure/re.nim
+++ b/lib/impure/re.nim
@@ -436,7 +436,7 @@ iterator findAll*(buf: cstring, pattern: Regex, start = 0, bufSize: int): string
 
 proc findAll*(s: string, pattern: Regex, start = 0): seq[string] {.inline.} =
   ## returns all matching `substrings` of `s` that match `pattern`.
-  ## If it does not match, @[] is returned.
+  ## If it does not match, `@[]` is returned.
   result = @[]
   for x in findAll(s, pattern, start): result.add x