#33416: Typo in tutorial
------------------------------------------------+------------------------
               Reporter:  StvnLm                |          Owner:  nobody
                   Type:  Cleanup/optimization  |         Status:  new
              Component:  Documentation         |        Version:  4.0
               Severity:  Normal                |       Keywords:  typo
           Triage Stage:  Unreviewed            |      Has patch:  0
    Needs documentation:  0                     |    Needs tests:  0
Patch needs improvement:  0                     |  Easy pickings:  1
                  UI/UX:  0                     |
------------------------------------------------+------------------------
 https://docs.djangoproject.com/en/4.0/intro/tutorial03/

 def detail(request, question_id):
     return HttpResponse("You're looking at question %s." % question_id)

 def results(request, question_id):
     response = "You're looking at the results of question %s."
     return HttpResponse(response **% question_id**)

 def vote(request, question_id):
     return HttpResponse("You're voting on question %s." % question_id)

-- 
Ticket URL: <https://code.djangoproject.com/ticket/33416>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/049.5ebafb03060a36b2c5f423b589a18a9c%40djangoproject.com.

Reply via email to