Skip to content

Commit

Permalink
Polish
Browse files Browse the repository at this point in the history
  • Loading branch information
gotcha committed May 14, 2019
1 parent a19a8a8 commit d605700
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/zdgbook/GettingStarted.rst
Expand Up @@ -158,7 +158,7 @@ code to ``src/poll/__init__.py``.

__import__('pkg_resources').declare_namespace(__name__)

Next, we need to add the minimum meta data required for the package
Next, we need to add the minimum metadata required for the package
in `setup.py`.

::
Expand All @@ -175,15 +175,15 @@ in `setup.py`.
"Zope"],
)

We need to add two more files to be recognized by Zope. First,
define this call-back function in ``src/poll/main/__init__.py``.
We need to edit two more files to be recognized by Zope. First,
define the ``initialize`` callback function in ``src/poll/main/__init__.py``.

::

def initialize(registrar):
pass

And in the ZCML file (``src/poll/main/configure.zcml``) add these
And, in the ZCML file (``src/poll/main/configure.zcml``), add these
few lines.

::
Expand Down

0 comments on commit d605700

Please sign in to comment.