From 753a53eede74413810a4f0b3191be753adb541fd Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Wed, 7 May 2025 17:24:51 -0700 Subject: [PATCH] Fix spelling error --- sqlite_utils/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlite_utils/db.py b/sqlite_utils/db.py index ef8c40e..5c1cc99 100644 --- a/sqlite_utils/db.py +++ b/sqlite_utils/db.py @@ -3203,7 +3203,7 @@ class Table(Queryable): :param not_null: Set of strings specifying columns that should be ``NOT NULL``. :param defaults: Dictionary specifying default values for specific columns. :param hash_id: Name of a column to create and use as a primary key, where the - value of thet primary key will be derived as a SHA1 hash of the other column values + value of that primary key will be derived as a SHA1 hash of the other column values in the record. ``hash_id="id"`` is a common column name used for this. :param alter: Boolean, should any missing columns be added automatically? :param ignore: Boolean, if a record already exists with this primary key, ignore this insert.