From 1a77f30d3c40b1a6812da5d27ab35fa1acbd988b Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 25 Feb 2020 23:11:19 -0800 Subject: [PATCH] Fixed typo --- docs/internals.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/internals.rst b/docs/internals.rst index 91acf3f4..c0416975 100644 --- a/docs/internals.rst +++ b/docs/internals.rst @@ -94,7 +94,7 @@ Database class Instances of the ``Database`` class can be used to execute queries against attached SQLite databases, and to run introspection against their schemas. -SQLite only allows one databasae connection to write at a time. Datasette handles this for you by maintaining a queue of writes to be executed against a given database. Plugins can submit write operations to this queue and they will be executed in the order in which they are received. +SQLite only allows one database connection to write at a time. Datasette handles this for you by maintaining a queue of writes to be executed against a given database. Plugins can submit write operations to this queue and they will be executed in the order in which they are received. .. _database_execute_write: