Django

Code

Changeset 6809

Show
Ignore:
Timestamp:
12/01/07 14:12:44 (11 months ago)
Author:
ubernostrum
Message:

Correcting some awkward wording/spelling in docs/request_response.txt while I'm in there

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/request_response.txt

    r6808 r6809  
    558558    * If you don't define your own 404 view -- and simply use the 
    559559      default, which is recommended -- you still have one obligation: 
    560       To create a ``404.html`` template in the root of your template 
    561       directory. The default 404 view will use that template for all 
    562       404 errors. The default 404 view will pass one variable to th
    563       template: ``request_path``, which is the URL which resulted in 
    564       the 404. 
     560      you must create a ``404.html`` template in the root of your 
     561      template directory. The default 404 view will use that template 
     562      for all 404 errors. The default 404 view will pass one variabl
     563      to the template: ``request_path``, which is the URL which 
     564      resulted in the 404. 
    565565 
    566566    * If ``DEBUG`` is set to ``True`` (in your settings module) then your 404