From 41502be60ac619dd78b64b15987029182171a134 Mon Sep 17 00:00:00 2001 From: antongalitch <94177756+antongalitch@users.noreply.github.com> Date: Wed, 10 Aug 2022 18:02:43 +0200 Subject: [PATCH] Fix a small typo --- plugins/bkpr/db.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/bkpr/db.c b/plugins/bkpr/db.c index 4efe43b2b..e0774f115 100644 --- a/plugins/bkpr/db.c +++ b/plugins/bkpr/db.c @@ -19,7 +19,7 @@ static void migration_remove_dupe_lease_fees(struct plugin *p, struct db *db); /* Do not reorder or remove elements from this array. * It is used to migrate existing databases from a prevoius state, based on - * string indicies */ + * string indices */ static struct migration db_migrations[] = { {SQL("CREATE TABLE version (version INTEGER);"), NULL}, {SQL("INSERT INTO version VALUES (1);"), NULL},