From 89fe268007807cf8575f580e92a6557bdc64b3d1 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_sqlite.nim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/db_sqlite.nim b/src/db_sqlite.nim index 73657b510f..6ca81db9e9 100644 --- a/src/db_sqlite.nim +++ b/src/db_sqlite.nim @@ -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)