Opened 16 years ago

Closed 16 years ago

#6998 closed (fixed)

Typo in part 4 of tutorial 'Writing your first Django app'

Reported by: PeterUpfold Owned by: anonymous
Component: Documentation Version: dev
Severity: Keywords: typo tutorial first documentation spelling
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

In part 4 of the 'Writing your first Django app' tutorial, <http://www.djangoproject.com/documentation/tutorial04/>, there is a typo towards the end of the page, where render_to_response() is erroneously referred to as render_to_repsonse().

To be more specific, the line:

The vote() view is still required. However, it must be modified to match the new context variables. In the render_to_repsonse() call, rename the poll context variable to object.

should read:

The vote() view is still required. However, it must be modified to match the new context variables. In the render_to_response() call, rename the poll context variable to object.

Change History (2)

comment:1 by anonymous, 16 years ago

Owner: changed from nobody to anonymous
Status: newassigned

comment:2 by Russell Keith-Magee, 16 years ago

Resolution: fixed
Status: assignedclosed

(In [7410]) Fixed #6998 -- Corrected typo in Tutorial 4. Thanks, Peter Upfold.

Note: See TracTickets for help on using tickets.
Back to Top