summary refs log tree commit diff stats
path: root/lib/pure/strscans.nim
diff options
context:
space:
mode:
Diffstat (limited to 'lib/pure/strscans.nim')
-rw-r--r--lib/pure/strscans.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/strscans.nim b/lib/pure/strscans.nim
index 0b23abc28..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 =
@@ -283,7 +283,7 @@ efficiency and perform different checks.
 ]##
 
 
-import macros, parseutils
+import std/[macros, parseutils]
 import std/private/since
 
 when defined(nimPreviewSlimSystem):