summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Ombredanne <pombredanne@gmail.com>2016-08-26 09:29:44 +0200
committerGitHub <noreply@github.com>2016-08-26 09:29:44 +0200
commit3c812c10e78e779dabbfb686590886652b1548b0 (patch)
tree1843e24018e67ccd814a1ff12a95257c3c18a4b7
parent3ad92592a45a6482ceb65dead13cb0eb13193ae4 (diff)
downloadpluginbase-3c812c10e78e779dabbfb686590886652b1548b0.tar.gz
Fixed minor doc typo.
-rw-r--r--docs/index.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/index.rst b/docs/index.rst
index b2de86b..6c34e09 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -76,7 +76,7 @@ Q: Why is there a plugin base and a plugin source class?
Q: Do plugins pollute ``sys.modules``?
While a plugin source is alive the plugins do indeed reside in
- ``sys.modules``. This decision was make conciously so that as little
+ ``sys.modules``. This decision was made consciously so that as little
as possible of the Python library ecosystem breaks. However when the
plugin source gets garbage collected all loaded plugins will
also get garbage collected.