Correct typo

Amolith created

Change summary

db/db.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

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