Fixed RST formatting

This commit is contained in:
Simon Willison 2019-01-25 10:16:26 -08:00 committed by GitHub
commit 7689ca7229
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,7 +13,7 @@ You can execute a SQL query against a database and get the results back as CSV l
$ sqlite-utils csv docs.db "select id, title, author from documents"
This will default to including the column names as a header row. To exclude the headers, use ``--no-headers``:
This will default to including the column names as a header row. To exclude the headers, use ``--no-headers``::
$ sqlite-utils csv docs.db "select id, title, author from documents" --no-headers