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 05f1ddc34c
commit 2834588250

View File

@@ -37,7 +37,7 @@
## ----------------------------------
##
## .. code-block:: Nim
## import db_odbc
## import std/db_odbc
## var db = open("localhost", "user", "password", "dbname")
## db.close()
##
@@ -62,7 +62,7 @@
##
## .. code-block:: Nim
##
## import db_odbc, math
## import std/[db_odbc, math]
##
## var theDb = open("localhost", "nim", "nim", "test")
##