Skip to content

Commit

Permalink
Fixed references to django.core.cache in the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiask committed May 23, 2023
1 parent 52ff5eb commit 2929bb4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ Deprecated features
3.3.0 (2022-04-28)
------------------

* Track calls to :py:meth:`django.core.caches.cache.get_or_set`.
* Track calls to :py:meth:`django.core.cache.cache.get_or_set`.
* Removed support for Django < 3.2.
* Updated check ``W006`` to look for
``django.template.loaders.app_directories.Loader``.
Expand All @@ -176,7 +176,7 @@ Deprecated features

* Changed cache monkey-patching for Django 3.2+ to iterate over existing
caches and patch them individually rather than attempting to patch
``django.core.caches`` as a whole. The ``middleware.cache`` is still
``django.core.cache`` as a whole. The ``middleware.cache`` is still
being patched as a whole in order to attempt to catch any cache
usages before ``enable_instrumentation`` is called.
* Add check ``W006`` to warn that the toolbar is incompatible with
Expand Down Expand Up @@ -298,7 +298,7 @@ Deprecated features
``localStorage``.
* Updated the code to avoid a few deprecation warnings and resource warnings.
* Started loading JavaScript as ES6 modules.
* Added support for :meth:`cache.touch() <django.core.caches.cache.touch>` when
* Added support for :meth:`cache.touch() <django.core.cache.cache.touch>` when
using django-debug-toolbar.
* Eliminated more inline CSS.
* Updated ``tox.ini`` and ``Makefile`` to use isort>=5.
Expand Down

0 comments on commit 2929bb4

Please sign in to comment.