Fixed typo

This commit is contained in:
Simon Willison 2022-01-11 11:20:34 -08:00 committed by GitHub
commit 5f38c81601
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -976,7 +976,7 @@ Given a JSON file called ``dogs.json`` containing this:
The following command will insert that data and add an ``is_good`` column set to ``1`` for each dog::
$ sqlite-utils insert dogs.db dogs dogs.json --convert 'row["is_good"] = 1`
$ sqlite-utils insert dogs.db dogs dogs.json --convert 'row["is_good"] = 1'
The ``--convert`` option also works with the ``--csv``, ``--tsv`` and ``--nl`` insert options.