From b0a2f897f4e70fd9cbb0da227da75d3f5eaa5248 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 9 Jul 2019 04:42:40 -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 c7ef65a..5c9ed06 100644 --- a/docs/python-api.rst +++ b/docs/python-api.rst @@ -23,7 +23,7 @@ This will create ``my_database.db`` if it does not already exist. You can also p db = Database(sqlite3.connect("my_database.db")) -If you want to create an in-memory database, you con do so like this: +If you want to create an in-memory database, you can do so like this: .. code-block:: python