summary refs log tree commit diff stats
path: root/lib/pure/strscans.nim
diff options
context:
space:
mode:
authorMiran <narimiran@disroot.org>2021-07-28 14:31:13 +0200
committerGitHub <noreply@github.com>2021-07-28 14:31:13 +0200
commite616675c419552a85bdf0b47f47586852be8b5be (patch)
tree86e9910693d076d030b819e441b3710bd90add4c /lib/pure/strscans.nim
parenta273ea70e8817e3509014a1b3dcd16a360ed400b (diff)
downloadNim-e616675c419552a85bdf0b47f47586852be8b5be.tar.gz
various small documentation improvements (#18602)
Diffstat (limited to 'lib/pure/strscans.nim')
-rw-r--r--lib/pure/strscans.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/strscans.nim b/lib/pure/strscans.nim
index 73b53e3d6..291af7408 100644
--- a/lib/pure/strscans.nim
+++ b/lib/pure/strscans.nim
@@ -52,7 +52,7 @@ substrings starting with ``$``. These constructions are available:
 =================   ========================================================
 
 Even though ``$*`` and ``$+`` look similar to the regular expressions ``.*``
-and ``.+`` they work quite differently, there is no non-deterministic
+and ``.+``, they work quite differently. There is no non-deterministic
 state machine involved and the matches are non-greedy. ``[$*]``
 matches ``[xyz]`` via ``parseutils.parseUntil``.