diff --git a/docs/ref/contrib/contenttypes.txt b/docs/ref/contrib/contenttypes.txt
index 0226435..3613e1a 100644
a
|
b
|
The ``ContentTypeManager``
|
187 | 187 | probably won't ever need to call this method yourself; Django will call |
188 | 188 | it automatically when it's needed. |
189 | 189 | |
| 190 | .. method:: get_for_id(id) |
| 191 | |
| 192 | Lookup a ContentType by ID. Since this method uses the same shared |
| 193 | cache as ``get_for_model``, it's preferred to use this method over |
| 194 | ``ContentType.objects.get(pk=id)`` |
| 195 | |
190 | 196 | .. method:: get_for_model(model[, for_concrete_model=True]) |
191 | 197 | |
192 | 198 | Takes either a model class or an instance of a model, and returns the |