summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2009-05-15 17:38:59 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2009-05-15 17:38:59 +0200
commit226f0d6a40a01cbcc9c7baffde647159fb784e40 (patch)
tree9afbc585a157cd7719dd2379f64a89ba4e4b95c7 /doc
parenta6a43af88f97e8cd4684e220dc97d3037d92a068 (diff)
downloadportato-226f0d6a40a01cbcc9c7baffde647159fb784e40.tar.gz
portato-226f0d6a40a01cbcc9c7baffde647159fb784e40.tar.bz2
portato-226f0d6a40a01cbcc9c7baffde647159fb784e40.zip
Small fix in doc
Diffstat (limited to 'doc')
-rw-r--r--doc/Howto_Write_Plugins2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Howto_Write_Plugins b/doc/Howto_Write_Plugins
index 109aa06..4fce64d 100644
--- a/doc/Howto_Write_Plugins
+++ b/doc/Howto_Write_Plugins
@@ -17,7 +17,7 @@ Add the end you only call ``register`` once for each class and are done :).
Of course there are some things you should bare in mind:
1. Do not use the ``__init__`` method, but ``init``.
- 2. Do not use a member which shadows one from the original class:
+ 2. Do not declare a member which shadows one from the original class:
``description``, ``author``, ``status``, ``menus``, ``name``, ``calls``, ``deps``, ``enabled``, ``add_widget``, ``create_widget``, ``add_call``
3. Of course you can *use* the members mentioned under point 2.