summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorStephen <sgates786@gmail.com>2023-12-17 23:25:49 -0600
committerGitHub <noreply@github.com>2023-12-18 13:25:49 +0800
commit080a0723369bbfc2f4bdc1aaa2b0717d467b84aa (patch)
tree3d5958cd7f44f4c72e67f9f731c9b1a82f52651b /lib
parentfe18ec5dc089831c6ea634ade211d8d0dadfec86 (diff)
downloadNim-080a0723369bbfc2f4bdc1aaa2b0717d467b84aa.tar.gz
Fix grammar (#23090)
Diffstat (limited to 'lib')
-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 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 =