Minor markup cleanup

This commit is contained in:
Simon Willison 2019-07-09 04:55:04 -07:00 committed by GitHub
commit fef96163d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -632,7 +632,7 @@ You can create an index on a table using the ``.create_index(columns)`` method.
dogs.create_index(["is_good_dog"])
By default the index will be named ``idx_{table-name}_{columns}`` - if you want to customize the name of the created index you can pass the ``index_name`` parameter::]
By default the index will be named ``idx_{table-name}_{columns}`` - if you want to customize the name of the created index you can pass the ``index_name`` parameter:
.. code-block:: python