diff --git a/docs/ref/utils.txt b/docs/ref/utils.txt
index 979c186..166a149 100644
a
|
b
|
to distinguish caches by the ``Accept-language`` header.
|
98 | 98 | cache, this just means that we have to build the response once to get at |
99 | 99 | the Vary header and so at the list of headers to use for the cache key. |
100 | 100 | |
101 | | SortedDict |
102 | | ========== |
| 101 | ``django.utils.datastructures`` |
| 102 | =============================== |
103 | 103 | |
104 | 104 | .. module:: django.utils.datastructures |
105 | | :synopsis: A dictionary that keeps its keys in the order in which they're inserted. |
| 105 | :synopsis: A series of convenient data structures which are not available |
| 106 | by default in Python. |
106 | 107 | |
107 | 108 | .. class:: SortedDict |
108 | 109 | |