summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Madden <jamadden@gmail.com>2018-09-27 07:20:05 -0500
committerJason Madden <jamadden@gmail.com>2018-09-27 07:20:05 -0500
commitb209bb22b27c27bf97a04fa6e61d8d3979e5c598 (patch)
tree6d0780c388027be3b256391f0742b8415878ceb0
parent6114a6022d76b046781ee0434434e696664b84c1 (diff)
downloadzope-configuration-b209bb22b27c27bf97a04fa6e61d8d3979e5c598.tar.gz
No need to repeat all the docs for zopeconfigure twice.
-rw-r--r--docs/api/zopeconfigure.rst5
-rw-r--r--src/zope/configuration/zopeconfigure.py6
2 files changed, 7 insertions, 4 deletions
diff --git a/docs/api/zopeconfigure.rst b/docs/api/zopeconfigure.rst
index a84937e..8570e35 100644
--- a/docs/api/zopeconfigure.rst
+++ b/docs/api/zopeconfigure.rst
@@ -1,4 +1,5 @@
-:mod:`zope.configuration.zopeconfigure`
-=======================================
+==================================
+ zope.configuration.zopeconfigure
+==================================
.. automodule:: zope.configuration.zopeconfigure
diff --git a/src/zope/configuration/zopeconfigure.py b/src/zope/configuration/zopeconfigure.py
index 0f8077d..266fd46 100644
--- a/src/zope/configuration/zopeconfigure.py
+++ b/src/zope/configuration/zopeconfigure.py
@@ -123,7 +123,7 @@ class IZopeConfigure(Interface):
information collected is used by subdirectives.
It may seem that this directive can only be used once per file, but it can
- be applied whereever it is convenient.
+ be applied wherever it is convenient.
"""
package = GlobalObject(
@@ -149,7 +149,9 @@ class IZopeConfigure(Interface):
class ZopeConfigure(GroupingContextDecorator):
- __doc__ = __doc__
+ """
+ The implementation of `IZopeConfigure`.
+ """
def __init__(self, context, **kw):
super(ZopeConfigure, self).__init__(context, **kw)