summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2011-11-11 17:57:00 +0100
committerFlorent Le Coz <louiz@louiz.org>2011-11-11 17:57:00 +0100
commit50d5c6b8b26dd66342a66ccd84bc8f68709bc724 (patch)
treea7182c322ad3966cd7fa661bbdcdcaee5bdc8f47 /doc
parent32792fbc9c7579c16a58bfb042245ba145fa904c (diff)
downloadpoezio-50d5c6b8b26dd66342a66ccd84bc8f68709bc724.tar.gz
poezio-50d5c6b8b26dd66342a66ccd84bc8f68709bc724.tar.bz2
poezio-50d5c6b8b26dd66342a66ccd84bc8f68709bc724.tar.xz
poezio-50d5c6b8b26dd66342a66ccd84bc8f68709bc724.zip
Fix a little error in the plugins doc
Diffstat (limited to 'doc')
-rw-r--r--doc/en/plugins.txt5
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/en/plugins.txt b/doc/en/plugins.txt
index 4cef6db9..c4eceb1a 100644
--- a/doc/en/plugins.txt
+++ b/doc/en/plugins.txt
@@ -1,7 +1,6 @@
Plugins
=======
-
Location
--------
@@ -243,7 +242,7 @@ Examples
[[example-1]]
.Add a simple command that sends "Hello World!" into the conversation
-=====================================================================
+=================================================================
[source,python]
---------------
class Plugin(BasePlugin):
@@ -253,7 +252,7 @@ class Plugin(BasePlugin):
def command_hello(self, arg):
self.core.send_message('Hello World!')
---------------
-=====================================================================
+=================================================================
[[example-2]]