Skip to content

Commit

Permalink
Change stdlib imports to use std prefix in most examples (#17202)
Browse files Browse the repository at this point in the history
  • Loading branch information
Danil Yarantsev authored and ringabout committed Feb 28, 2021
1 parent fbb62a6 commit 89fe268
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/db_sqlite.nim
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
##
## .. code-block:: Nim
##
## import db_sqlite
## import std/db_sqlite
##
## # user, password, database name can be empty.
## # These params are not used on db_sqlite module.
Expand Down Expand Up @@ -66,7 +66,7 @@
##
## .. code-block:: nim
##
## import db_sqlite, math
## import std/[db_sqlite, math]
##
## let db = open("mytest.db", "", "", "")
##
Expand Down Expand Up @@ -99,7 +99,7 @@
##
## .. code-block:: nim
##
## import random
## import std/random
##
## ## Generate random float datas
## var orig = newSeq[float64](150)
Expand Down

0 comments on commit 89fe268

Please sign in to comment.