diff options
author | Stephen <sgates786@gmail.com> | 2023-12-17 23:25:49 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-18 13:25:49 +0800 |
commit | 080a0723369bbfc2f4bdc1aaa2b0717d467b84aa (patch) | |
tree | 3d5958cd7f44f4c72e67f9f731c9b1a82f52651b /lib/pure/strscans.nim | |
parent | fe18ec5dc089831c6ea634ade211d8d0dadfec86 (diff) | |
download | Nim-080a0723369bbfc2f4bdc1aaa2b0717d467b84aa.tar.gz |
Fix grammar (#23090)
Diffstat (limited to 'lib/pure/strscans.nim')
-rw-r--r-- | lib/pure/strscans.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/strscans.nim b/lib/pure/strscans.nim index cf3f3116b..16ef9e642 100644 --- a/lib/pure/strscans.nim +++ b/lib/pure/strscans.nim @@ -94,7 +94,7 @@ which we then use in our scanf pattern to help us in the matching process: ... ``` -It also possible to pass arguments to a user definable matcher: +It is also possible to pass arguments to a user definable matcher: ```nim proc ndigits(input: string; intVal: var int; start: int; n: int): int = |