Correct some typos (#245)

This commit is contained in:
Damien Ready 2021-05-18 21:58:04 -05:00 committed by GitHub
commit 3e62ab62a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 8 deletions

View file

@ -603,7 +603,7 @@ The first argument to ``update()`` is the primary key. This can be a single valu
>>> db["compound_dogs"].update((5, 3), {"name": "Updated"})
The second argument is a dictonary of columns that should be updated, along with their new values.
The second argument is a dictionary of columns that should be updated, along with their new values.
You can cause any missing columns to be added automatically using ``alter=True``::