summaryrefslogtreecommitdiff
path: root/doc/source/dev/overview.rst
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2019-01-04 13:54:26 +0100
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2019-01-04 13:54:28 +0100
commit7d6cd695113064b5dd495526f2cf8f679bd35bad (patch)
treeebec90d230249f2fb510d51f550111efe580ee70 /doc/source/dev/overview.rst
parent5d07a27e1d8f5881dc576721a87ca9c77b48e51b (diff)
downloadpoezio-7d6cd695113064b5dd495526f2cf8f679bd35bad.tar.gz
poezio-7d6cd695113064b5dd495526f2cf8f679bd35bad.tar.bz2
poezio-7d6cd695113064b5dd495526f2cf8f679bd35bad.tar.xz
poezio-7d6cd695113064b5dd495526f2cf8f679bd35bad.zip
Fix several typos in the docs.
Thanks Mopi!
Diffstat (limited to 'doc/source/dev/overview.rst')
-rw-r--r--doc/source/dev/overview.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/dev/overview.rst b/doc/source/dev/overview.rst
index fcf5ff22..96d4435b 100644
--- a/doc/source/dev/overview.rst
+++ b/doc/source/dev/overview.rst
@@ -40,7 +40,7 @@ method (inherited empty from the Tab class), call a scrolling method from the
appropriate **window**.
All tabs types inherit from the class **Tab**, and the tabs featuring
-chat functionnality will inherit from **ChatTab** (which inherits from **Tab**).
+chat functionality will inherit from **ChatTab** (which inherits from **Tab**).
Examples of **tabs**: MUCTab, XMLTab, RosterTab, MUCListTab, etc…
@@ -80,9 +80,9 @@ or
/command "arg1 with spaces" arg2
-However, when creating a command, you wil deal with _one_ str, no matter what.
+However, when creating a command, you will deal with _one_ str, no matter what.
There are utilities to deal with it (common.shell_split), but it is not always
-necessary. Commands are registered in the **commands** dictionnary of a tab
+necessary. Commands are registered in the **commands** dictionary of a tab
structured as key (command name) -> tuple(command function, help string, completion).
Completions are a bit tricky, but it’s easy once you get used to it: