1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-06-27 16:36:00 +00:00

Correct spelling

This commit is contained in:
Edward Betts 2021-05-13 14:38:32 +01:00 committed by fguillot
parent 0c56b4d580
commit 264f4db567
6 changed files with 8 additions and 8 deletions

View file

@ -171,7 +171,7 @@ func Parse() {
return
}
// Run migrations and start the deamon.
// Run migrations and start the daemon.
if config.Opts.RunMigrations() {
if err := database.Migrate(db); err != nil {
logger.Fatal(`%v`, err)
@ -182,7 +182,7 @@ func Parse() {
logger.Fatal(`You must run the SQL migrations, %v`, err)
}
// Create admin user and start the deamon.
// Create admin user and start the daemon.
if config.Opts.CreateAdmin() {
createAdmin(store)
}