db/db.go 🔗
@@ -23,7 +23,7 @@ func Open(dbPath string) (*sql.DB, error) {
return sql.Open("sqlite", "file:"+dbPath+"?_pragma=journal_mode%3DWAL")
}
-// VerifySchema checks whether the schema has been initalised and initialises it
+// VerifySchema checks whether the schema has been initialised and initialises it
// if not
func InitialiseDatabase(dbConn *sql.DB) error {
var name string