From 0f8e91c68f2d2ad48efc8324b12762bf8b58facd Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 25 Feb 2020 23:13:39 -0800 Subject: [PATCH] Documentation fix --- docs/internals.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/internals.rst b/docs/internals.rst index c0416975..a68a73b1 100644 --- a/docs/internals.rst +++ b/docs/internals.rst @@ -103,7 +103,7 @@ await db.execute_write(sql, params=None, block=False) This method can be used to queue up a non-SELECT SQL query to be executed against a single write connection to the database. -You can pass additional SQL parametercs as a tuple or list. +You can pass additional SQL parameters as a tuple or dictionary. By default queries are considered to be "fire and forget" - they will be added to the queue and executed in a separate thread while your code can continue to do other things. The method will return a UUID representing the queued task.