From ce00e9284f96aca50f0d64c37cd81d29d945d0a0 Mon Sep 17 00:00:00 2001 From: Danil Yarantsev Date: Mon, 1 Mar 2021 00:17:19 +0300 Subject: [PATCH] Change stdlib imports to use std prefix in most examples (#17202) --- src/db_mysql.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/db_mysql.nim b/src/db_mysql.nim index fcc29a2056..242ea1b0d8 100644 --- a/src/db_mysql.nim +++ b/src/db_mysql.nim @@ -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") ##