From 5be66529a3887a88b2c08d23c82e3aa8de344797 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 9 Jul 2019 04:49:32 -0700 Subject: [PATCH] Fixed RST and Typo --- 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 5c9ed06..621daf6 100644 --- a/docs/python-api.rst +++ b/docs/python-api.rst @@ -355,7 +355,7 @@ You can set a ``NOT NULL DEFAULT 'x'`` constraint on the new column using ``not_ Adding columns automatically on insert/update ============================================= -You can insert or update data that includes new columns and have the table automatically altered to fit the new schema using the ``alter=True`` argument. This can be passed to all four of ``.insert()``, ``.upsert()``, ``.insert_all()``and ``.insert_all()``: +You can insert or update data that includes new columns and have the table automatically altered to fit the new schema using the ``alter=True`` argument. This can be passed to all four of ``.insert()``, ``.upsert()``, ``.insert_all()`` and ``.upsert_all()``: .. code-block:: python