summaryrefslogtreecommitdiffstatshomepage
path: root/docs/library/btree.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/library/btree.rst')
-rw-r--r--docs/library/btree.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/library/btree.rst b/docs/library/btree.rst
index ba91085210..c093f970fa 100644
--- a/docs/library/btree.rst
+++ b/docs/library/btree.rst
@@ -22,7 +22,7 @@ Example::
# First, we need to open a stream which holds a database
# This is usually a file, but can be in-memory database
- # using uio.BytesIO, a raw flash partition, etc.
+ # using io.BytesIO, a raw flash partition, etc.
# Oftentimes, you want to create a database file if it doesn't
# exist and open if it exists. Idiom below takes care of this.
# DO NOT open database with "a+b" access mode.