summaryrefslogtreecommitdiff
path: root/docs/source/api
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2012-08-11 16:49:24 +0100
committerPatrick Totzke <patricktotzke@gmail.com>2012-08-11 17:53:50 +0100
commit6117549cf2a84711aaccf81ec193742e2b9bddbd (patch)
treed0ce48cfc49cc1286a1200709aa214ff3f4119d8 /docs/source/api
parent00bb9b2f05126f2b6ccde69872e428c12e15816f (diff)
docs: fix typos in interface docs
Diffstat (limited to 'docs/source/api')
-rw-r--r--docs/source/api/overview.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/source/api/overview.rst b/docs/source/api/overview.rst
index a5ef1e7d..e1ee4165 100644
--- a/docs/source/api/overview.rst
+++ b/docs/source/api/overview.rst
@@ -4,7 +4,7 @@ Overview
The main component is :class:`alot.ui.UI`, which provides methods for user input and notifications, sets up the widget
tree and maintains the list of active buffers.
When you start up alot, :file:`init.py` initializes logging, parses settings and commandline args
-and instanciates the :class:`UI <alot.ui.UI>` instance of that gets passes around later.
+and instantiates the :class:`UI <alot.ui.UI>` instance of that gets passes around later.
From its constructor this instance starts the :mod:`urwid` :class:`mainloop <urwid.main_loop.TwistedEventLoop>`
that takes over.
@@ -12,9 +12,9 @@ Apart from the central :class:`UI <alot.ui.UI>`, there are two other "managers"
core functionalities, also set up in :file:`init.py`:
* :attr:`ui.dbman <alot.ui.UI.dbman>`: a :class:`DBManager <alot.db.DBManager>` to access the email database and
-* :attr:`alot.settings.settings`: a :class:`SettingsManager <alot.settings.SettingsManager>` fo access user settings
+* :attr:`alot.settings.settings`: a :class:`SettingsManager <alot.settings.SettingsManager>` oo access user settings
-Every user action, triggered either by keybindings or as input to the commandprompt, is
+Every user action, triggered either by key bindings or via the command prompt, is
given as commandline string that gets :func:`translated <alot.commands.commandfactory>`
to a :class:`Command <alot.commands.Command>` object which is then :meth:`applied <alot.ui.UI.apply_command>`.
Different actions are defined as a subclasses of :class:`Command <alot.commands.Command>`, which live