aboutsummaryrefslogtreecommitdiff
path: root/bindings/python-cffi/notmuch2/_message.py
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2020-08-08 13:49:55 +0200
committerDavid Bremner <david@tethera.net>2020-08-09 21:14:36 -0300
commit6c84dee53193a78cf797b44d3febcc14488ea6b1 (patch)
tree7b723f3d15aa973c7e6277e0cc90f3851ae97f59 /bindings/python-cffi/notmuch2/_message.py
parentdf3fab18fe70ea750f6f06da30291c67de7e74f2 (diff)
Fix typos
Diffstat (limited to 'bindings/python-cffi/notmuch2/_message.py')
-rw-r--r--bindings/python-cffi/notmuch2/_message.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bindings/python-cffi/notmuch2/_message.py b/bindings/python-cffi/notmuch2/_message.py
index 02de50ad..2f232076 100644
--- a/bindings/python-cffi/notmuch2/_message.py
+++ b/bindings/python-cffi/notmuch2/_message.py
@@ -147,7 +147,7 @@ class Message(base.NotmuchObject):
"""Return an iterator of all files for this message.
If multiple files contained the same message ID they will all
- be returned here. The files are returned as intances of
+ be returned here. The files are returned as instances of
:class:`pathlib.Path`.
:returns: Iterator yielding :class:`pathlib.Path` instances.
@@ -431,7 +431,7 @@ class PropertiesMap(base.NotmuchObject, collections.abc.MutableMapping):
means the former will yield duplicate keys while the latter won't.
It also means ``len(list(iter(this_map)))`` could be different
than ``len(this_map.keys())``. ``len(this_map)`` will correspond
- with the lenght of the default iterator.
+ with the length of the default iterator.
Be aware that libnotmuch exposes all of this as iterators, so
quite a few operations have O(n) performance instead of the usual