From 4c265933b9bf98bf5114d9779b0c61f44194a743 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sun, 21 Jun 2026 09:08:13 -0700 Subject: [PATCH] Typo fix --- docs/migrations.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/migrations.rst b/docs/migrations.rst index fdffc00..55f9547 100644 --- a/docs/migrations.rst +++ b/docs/migrations.rst @@ -6,7 +6,7 @@ ``sqlite-utils`` includes a migration system for applying repeatable changes to SQLite database files. -A migration is a Python function that receives a :class:`sqlite_utils.Database` instance and then executes Python code to modify that database - creating or transforming tables, adding indexes, inserting rows, or any other operation suppored by SQLite. +A migration is a Python function that receives a :class:`sqlite_utils.Database` instance and then executes Python code to modify that database - creating or transforming tables, adding indexes, inserting rows, or any other operation supported by SQLite. Migrations are grouped into named sets using the :class:`sqlite_utils.Migrations` class, and each applied migration is recorded in the ``_sqlite_migrations`` table in that database.