diff options
author | Andrey Makarov <ph.makarov@gmail.com> | 2022-11-14 10:43:29 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-14 15:43:29 +0800 |
commit | 3eef0491a8ef904abdfe96ab97c566c794305d80 (patch) | |
tree | ac0574af2095db0fc7cb1f55e26d1dd73ed73bf2 /lib/impure | |
parent | 7db0d2bb5804d69e21dc260367c1fdc3af2a9215 (diff) | |
download | Nim-3eef0491a8ef904abdfe96ab97c566c794305d80.tar.gz |
fix a few "broken link" warnings (#20837)
Diffstat (limited to 'lib/impure')
-rw-r--r-- | lib/impure/re.nim | 2 |
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 |