From 78198df668e189d2c9afe5f922fe4277d84b2f30 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 25 Feb 2020 17:10:30 -0800 Subject: [PATCH] Fixed incorrect target name --- docs/internals.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/internals.rst b/docs/internals.rst index 91d0f414..91acf3f4 100644 --- a/docs/internals.rst +++ b/docs/internals.rst @@ -109,7 +109,7 @@ By default queries are considered to be "fire and forget" - they will be added t If you pass ``block=True`` this behaviour changes: the method will block until the write operation has completed, and the return value will be the return from calling ``conn.execute(...)`` using the underlying ``sqlite3`` Python library. -.. _database_execute_write: +.. _database_execute_write_fn: await db.execute_write_fn(fn, block=False) ------------------------------------------