10BC0 docs/btree: Typo/wording fixes. · micropython/micropython@08c73d9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 08c73d9

Browse files
author
Paul Sokolovsky
committed
docs/btree: Typo/wording fixes.
1 parent 6ca086a commit 08c73d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/library/btree.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)
0