mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Fixed typo in docs/tutorial03.txt. Thanks, Aggelos Orfanakos
git-svn-id: http://code.djangoproject.com/svn/django/trunk@745 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -91,8 +91,8 @@ Finally, it calls that ``detail()`` function like so:: | ||||
|     detail(request=<HttpRequest object>, poll_id=23) | ||||
|  | ||||
| The ``poll_id=23`` part comes from ``(?P<poll_id>\d+)``. Using | ||||
| ``(?<name>pattern)`` "captures" the text matched by ``pattern`` and sends it as | ||||
| a keyword argument to the view function. | ||||
| ``(?P<name>pattern)`` "captures" the text matched by ``pattern`` and sends it | ||||
| as a keyword argument to the view function. | ||||
|  | ||||
| Because the URL patterns are regular expressions, there really is no limit on | ||||
| what you can do with them. And there's no need to add URL cruft such as | ||||
|   | ||||
		Reference in New Issue
	
	Block a user