summary refs log tree commit diff stats
path: root/lib/impure
diff options
context:
space:
mode:
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
 
d9676af5ae17fa15551a00f1ad5f3be109233f'>^
c1c889b9d ^
3ea644690 ^
c1c889b9d ^
e792940f5 ^
3ea644690 ^
405b86068
3ea644690 ^
439aa2d04 ^

405b86068
765366c1f ^


4aba7421f ^
387e337a2 ^

4aba7421f ^
b2e997759 ^
3ea644690 ^
b2e997759 ^

e792940f5 ^
405b86068
439aa2d04 ^
405b86068

783273032 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38