SQLite: Fix spelling typo

This commit is contained in:
Andre Polykanine 2018-12-04 23:43:19 +02:00
parent c267be254e
commit 4df6a9b08b
1 changed files with 3 additions and 3 deletions

View File

@ -43,14 +43,14 @@ import std.conv;
scope(exit))
*/
Sqlite openDBAndCreateIfNotPresent(string filename, string sql, void delegate(Sqlite db) initalize = null){
Sqlite openDBAndCreateIfNotPresent(string filename, string sql, void delegate(Sqlite db) initialize = null){
if(exists(filename))
return new Sqlite(filename);
else {
auto db = new Sqlite(filename);
db.exec(sql);
if(initalize !is null)
initalize(db);
if(initialize !is null)
initialize(db);
return db;
}
}