mirror of
https://github.com/nim-lang/Nim.git
synced 2026-06-23 11:39:45 +00:00
Change stdlib imports to use std prefix in most examples (#17202)
This commit is contained in:
committed by
ringabout
parent
fbb62a6c32
commit
89fe268007
@@ -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.
|
||||
@@ -66,7 +66,7 @@
|
||||
##
|
||||
## .. code-block:: nim
|
||||
##
|
||||
## import db_sqlite, math
|
||||
## import std/[db_sqlite, math]
|
||||
##
|
||||
## let db = open("mytest.db", "", "", "")
|
||||
##
|
||||
@@ -99,7 +99,7 @@
|
||||
##
|
||||
## .. code-block:: nim
|
||||
##
|
||||
## import random
|
||||
## import std/random
|
||||
##
|
||||
## ## Generate random float datas
|
||||
## var orig = newSeq[float64](150)
|
||||
|
||||
Reference in New Issue
Block a user