From b600d7de58931c541ce529d404f107234bef545d Mon Sep 17 00:00:00 2001 From: Tidiane Dia <71412737+Tijani-Dia@users.noreply.github.com> Date: Wed, 25 Oct 2023 09:58:40 +0100 Subject: [PATCH] Fix typo in configuration.md --- docs/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration.md b/docs/configuration.md index 979eddd..a9c10dd 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -61,7 +61,7 @@ DJ_TRACKER = { ## `TRACK_ATTRIBUTES_ACCESSED` -`dj-tracker` patches the `__getattribute__` method on tracked models to provide hints on using `values` or `values_list` when it detects that no model attribute or method was accessed except the fields fetched from the database. This add an overhead to avery attribute access. To disable this feature, set this setting to `False`. It's enabled by default. +`dj-tracker` patches the `__getattribute__` method on tracked models to provide hints on using `values` or `values_list` when it detects that no model attribute or method was accessed except the fields fetched from the database. This add an overhead to every attribute access. To disable this feature, set this setting to `False`. It's enabled by default. ```python DJ_TRACKER = {