Skip to content

Commit

Permalink
Merge pull request #166 from EdwardBetts/spelling
Browse files Browse the repository at this point in the history
Correct spelling mistakes
  • Loading branch information
mpenkov authored Dec 2, 2022
2 parents 8606ca4 + ec15ad7 commit 01b13c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Context Manager
>>> from sqlitedict import SqliteDict
>>>
>>> # The database is automatically closed when leaving the with section.
>>> # Uncommited objects are not saved on close. REMEMBER TO COMMIT!
>>> # Uncommitted objects are not saved on close. REMEMBER TO COMMIT!
>>>
>>> with SqliteDict("example.sqlite") as db:
... print("There are %d items in the database" % len(db))
Expand Down
2 changes: 1 addition & 1 deletion tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def attempt_terminate():

def test_readonly_table(self):
"""
Read-only access on a non-existant tablename should raise RuntimeError,
Read-only access on a non-existent tablename should raise RuntimeError,
and not create a new (empty) table.
"""
fname = norm_file('tests/db/sqlitedict-override-test.sqlite')
Expand Down

0 comments on commit 01b13c3

Please sign in to comment.