From ba6bd47f15c154e348c3c85c05858053a4ab7bab Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sun, 14 Jul 2019 09:25:57 -0700 Subject: [PATCH] Typo fix --- docs/python-api.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/python-api.rst b/docs/python-api.rst index a605ed3..210939f 100644 --- a/docs/python-api.rst +++ b/docs/python-api.rst @@ -123,7 +123,7 @@ You don't need to pass all of the columns to the ``column_order`` parameter. If After inserting a row like this, the ``dogs.last_rowid`` property will return the SQLite ``rowid`` assigned to the most recently inserted record. -The ``dogs.last_pk`` property will return the last inserted primary key value, if you specified one. This can be very useful when writing code that creates foreign key or many-to-many relationships. +The ``dogs.last_pk`` property will return the last inserted primary key value, if you specified one. This can be very useful when writing code that creates foreign keys or many-to-many relationships. Explicitly creating a table ---------------------------