summaryrefslogtreecommitdiff
path: root/docs/source/api
diff options
context:
space:
mode:
authorLucas Hoffmann <l-m-h@web.de>2016-09-17 09:13:59 +0200
committerLucas Hoffmann <l-m-h@web.de>2016-12-11 01:40:27 +0100
commit1edb6c6dc2a0dc9b20f544c6b500e2d991a07dd7 (patch)
treeb302afc4f87ea095de21da840e6f66a1d421dce7 /docs/source/api
parent86820ab5c53932b6f1967fb957e53f8e8c624cce (diff)
Remove trailing white space
Diffstat (limited to 'docs/source/api')
-rw-r--r--docs/source/api/commands.rst4
-rw-r--r--docs/source/api/database.rst2
-rw-r--r--docs/source/api/interface.rst4
3 files changed, 5 insertions, 5 deletions
diff --git a/docs/source/api/commands.rst b/docs/source/api/commands.rst
index cb1a9d7f..cae10a03 100644
--- a/docs/source/api/commands.rst
+++ b/docs/source/api/commands.rst
@@ -10,7 +10,7 @@ Command-line strings given by the user via the prompt or key bindings can be tra
Specific actions are defined as subclasses of :class:`Command` and can be registered
to a global command pool using the :class:`registerCommand` decorator.
-.. Note::
+.. Note::
that the return value
of :func:`commandfactory` depends on the current *mode* the user interface is in.
@@ -34,7 +34,7 @@ to a global command pool using the :class:`registerCommand` decorator.
.. autoclass:: Command
:members:
-
+
.. autoclass:: CommandParseError
.. autoclass:: CommandArgumentParser
.. autofunction:: commandfactory
diff --git a/docs/source/api/database.rst b/docs/source/api/database.rst
index ff66fd3e..bead2609 100644
--- a/docs/source/api/database.rst
+++ b/docs/source/api/database.rst
@@ -3,7 +3,7 @@ Email Database
.. module:: alot.db
-The python bindings to libnotmuch define :class:`notmuch.Thread` and
+The python bindings to libnotmuch define :class:`notmuch.Thread` and
:class:`notmuch.Message`, which unfortunately are very fragile.
Alot defines the wrapper classes :class:`alot.db.Thread` and :class:`alot.db.Message` that
use an :class:`manager.DBManager` instance to transparently provide persistent objects.
diff --git a/docs/source/api/interface.rst b/docs/source/api/interface.rst
index 27ed06d5..39b9cd3c 100644
--- a/docs/source/api/interface.rst
+++ b/docs/source/api/interface.rst
@@ -27,7 +27,7 @@ input and acts on it:
.. code-block:: python
from twisted.internet import defer
-
+
@defer.inlineCallbacks
def greet(ui): # ui is instance of alot.ui.UI
name = yield ui.prompt('pls enter your name')
@@ -102,7 +102,7 @@ Completion
:meth:`alot.ui.UI.prompt` allows tab completion using a :class:`~alot.completion.Completer`
object handed as 'completer' parameter. :mod:`alot.completion` defines several
subclasses for different occasions like completing email addresses from an
-:class:`~alot.account.AddressBook`, notmuch tagstrings. Some of these actually build on top
+:class:`~alot.account.AddressBook`, notmuch tagstrings. Some of these actually build on top
of each other; the :class:`~alot.completion.QueryCompleter` for example uses a
:class:`~alot.completion.TagsCompleter` internally to allow tagstring completion after
"is:" or "tag:" keywords when typing a notmuch querystring.