From 92aa5c9c5d26b0889c8c3d97c76a908d5f8af211 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Thu, 11 Nov 2021 12:50:22 -0800 Subject: [PATCH] Fixed typo --- 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 93d25b2..ab7252a 100644 --- a/sqlite_utils/db.py +++ b/sqlite_utils/db.py @@ -2694,7 +2694,7 @@ class Table(Queryable): set up a unique constraint on the ``name`` column to guarantee it will not contain duplicate rows. - It well then inserts a new row with the ``name`` set to ``Palm`` and return the + It will then insert a new row with the ``name`` set to ``Palm`` and return the new integer primary key value. See :ref:`python_api_lookup_tables` for more details.