Fixed wording for circular imports

This commit is contained in:
Armin Ronacher 2010-04-16 13:15:44 +02:00
parent 61d07b8be9
commit f54c4fd04f

View file

@ -87,7 +87,7 @@ And this is what `views.py` would look like::
.. admonition:: Circular Imports
Every Python programmer hates it, and yet we just did that: circular
imports (That's when one module depends on another one. In this case
imports (That's when two module depend on each one. In this case
`views.py` depends on `__init__.py`). Be advised that this is a bad
idea in general but here it is actually fine. The reason for this is
that we are not actually using the views in `__init__.py` and just