Skip to content

Commit

Permalink
Copy-edited previous commit.
Browse files Browse the repository at this point in the history
Thanks Tim for the review.
  • Loading branch information
aaugustin committed Dec 24, 2013
1 parent 285e765 commit 8c78cba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/ref/settings.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1297,7 +1297,7 @@ application. :ref:` Learn more about applications </ref/applications>`.
.. admonition:: Use the application registry for introspection

Your code should never access :setting:`INSTALLED_APPS` directly. Use the
app registry, :attr:`~django.apps.apps`, instead.
app registry, :attr:`django.apps.apps`, instead.

.. admonition:: Application labels must be unique

Expand Down
7 changes: 3 additions & 4 deletions docs/releases/1.7.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,11 @@ known as the "app cache" dealt with both installed applications and models.
The models module was used as an identifier for applications in many APIs.

As the concept of :doc:`Django applications </ref/applications>` matured, this
code showed some shortcomings. It was refactored into an "app registry" where
models modules no longer have a central role models and where it's possible to
code showed some shortcomings. It has been refactored into an "app registry"
where models modules no longer have a central role and where it's possible to
attach configuration data to applications.

Not only does this prepare the ground for further improvements, but it also
brings some concrete improvements:
Improvements thus far include:

* It is possible to omit ``models.py`` entirely if an application doesn't
have any models.
Expand Down

0 comments on commit 8c78cba

Please sign in to comment.