summaryrefslogtreecommitdiff
path: root/docs/library
diff options
context:
space:
mode:
authorHoward Lovatt <howard.lovatt@gmail.com>2020-10-09 20:40:17 +1100
committerDamien George <damien@micropython.org>2020-10-20 17:13:02 +1100
commit3bc0ecbcd974716920b860904a47ee7f69afb717 (patch)
treebbcff2fdf84d29081f6512ae378466ea570ff398 /docs/library
parent56e0932485af51ec175c8f43432eee67d657b334 (diff)
docs/library/btree.rst: Correct method typo: __detitem__ to __delitem__.
Diffstat (limited to 'docs/library')
-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 de52ef7e7..ba9108521 100644
--- a/docs/library/btree.rst
+++ b/docs/library/btree.rst
@@ -118,7 +118,7 @@ Methods
.. method:: btree.__getitem__(key)
btree.get(key, default=None, /)
btree.__setitem__(key, val)
- btree.__detitem__(key)
+ btree.__delitem__(key)
btree.__contains__(key)
Standard dictionary methods.