diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt
index 6179c30..00ee483 100644
a
|
b
|
worry about the ``urlconf`` parameter. The function returns a
|
837 | 837 | :class:`django.core.urlresolvers.ResolverMatch` object that allows you |
838 | 838 | to access various meta-data about the resolved URL. |
839 | 839 | |
| 840 | If the URL does not resolve, the function raises an |
| 841 | :class:`~django.http.Http404` exception. |
| 842 | |
840 | 843 | .. class:: ResolverMatch() |
841 | 844 | |
842 | 845 | .. attribute:: ResolverMatch.func |
diff --git a/docs/topics/http/views.txt b/docs/topics/http/views.txt
index 399e6b6..3ff11da 100644
a
|
b
|
to handle those errors.
|
95 | 95 | The Http404 exception |
96 | 96 | --------------------- |
97 | 97 | |
| 98 | .. class:: django.http.Http404() |
| 99 | |
98 | 100 | When you return an error such as ``HttpResponseNotFound``, you're responsible |
99 | 101 | for defining the HTML of the resulting error page:: |
100 | 102 | |