diff options
| author | James Bennett <ubernostrum@gmail.com> | 2007-12-01 20:12:44 +0000 |
|---|---|---|
| committer | James Bennett <ubernostrum@gmail.com> | 2007-12-01 20:12:44 +0000 |
| commit | b063bbc83862cc7cb83ccad44e9f284af2efea89 (patch) | |
| tree | 7963857252b8af863fbf65c84e990e2250940de7 | |
| parent | 7fbe014197e38d81398cf94f77501cd9940b9239 (diff) | |
Correcting some awkward wording/spelling in docs/request_response.txt while I'm in there
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6809 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | docs/request_response.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/request_response.txt b/docs/request_response.txt index 0875beb63c..6fcad8ee3d 100644 --- a/docs/request_response.txt +++ b/docs/request_response.txt @@ -557,11 +557,11 @@ Three things to note about 404 views: * If you don't define your own 404 view -- and simply use the default, which is recommended -- you still have one obligation: - To create a ``404.html`` template in the root of your template - directory. The default 404 view will use that template for all - 404 errors. The default 404 view will pass one variable to the - template: ``request_path``, which is the URL which resulted in - the 404. + you must create a ``404.html`` template in the root of your + template directory. The default 404 view will use that template + for all 404 errors. The default 404 view will pass one variable + to the template: ``request_path``, which is the URL which + resulted in the 404. * If ``DEBUG`` is set to ``True`` (in your settings module) then your 404 view will never be used, and the traceback will be displayed instead. |
