diff options
author | Danil Yarantsev <tiberiumk12@gmail.com> | 2021-03-01 00:17:19 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-28 13:17:19 -0800 |
commit | 56461c280f78c55f538da7f382e1c2c308e04915 (patch) | |
tree | f98e1d9a440725e4bdf3f44a1694aec958299ff6 /lib/pure/strscans.nim | |
parent | 26a6ceb34eb2bfca4e39dec2dac2d0a2cdc1bade (diff) | |
download | Nim-56461c280f78c55f538da7f382e1c2c308e04915.tar.gz |
Change stdlib imports to use std prefix in most examples (#17202)
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 9c55bf3e3..6bedf2de2 100644 --- a/lib/pure/strscans.nim +++ b/lib/pure/strscans.nim @@ -175,7 +175,7 @@ overloaded to handle both single characters and sets of character. .. code-block:: nim - import streams + import std/streams template atom(input: Stream; idx: int; c: char): bool = ## Used in scanp for the matching of atoms (usually chars). |