Change stdlib imports to use std prefix in most examples (#17202)

This commit is contained in:
Danil Yarantsev
2021-03-01 00:17:19 +03:00
committed by ringabout
parent 942694fd46
commit ce00e9284f

View File

@@ -31,7 +31,7 @@
## ----------------------------------
##
## .. code-block:: Nim
## import db_mysql
## import std/db_mysql
## let db = open("localhost", "user", "password", "dbname")
## db.close()
##
@@ -56,7 +56,7 @@
##
## .. code-block:: Nim
##
## import db_mysql, math
## import std/[db_mysql, math]
##
## let theDb = open("localhost", "nim", "nim", "test")
##