File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Example::
2222
2323 # First, we need to open a stream which holds a database
2424 # This is usually a file, but can be in-memory database
25- # using uio.BytesIO, a raw flash section , etc.
25+ # using uio.BytesIO, a raw flash partition , etc.
2626 # Oftentimes, you want to create a database file if it doesn't
2727 # exist and open if it exists. Idiom below takes care of this.
2828 # DO NOT open database with "a+b" access mode.
@@ -103,7 +103,7 @@ Methods
103103
104104 Close the database. It's mandatory to close the database at the end of
105105 processing, as some unwritten data may be still in the cache. Note that
106- this does not close underlying streamw with which the database was opened,
106+ this does not close underlying stream with which the database was opened,
107107 it should be closed separately (which is also mandatory to make sure that
108108 data flushed from buffer to the underlying storage).
109109
You can’t perform that action at this time.
0 commit comments