summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-12-28 23:14:09 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-12-28 23:14:09 +0000
commit5f47ce0b4ca1bc1c60e3beaff52d9f6d3747e5a1 (patch)
treeea2227dcfb5c43f629424cf770e7b10bfc18892a /docs
parent5cff7360cb202e1be049f181e11dab22b1e88d0c (diff)
Fixed #1128 -- Fixed typo in docs/url_dispatch.txt. Thanks, joost
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1790 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/url_dispatch.txt5
1 files changed, 0 insertions, 5 deletions
diff --git a/docs/url_dispatch.txt b/docs/url_dispatch.txt
index 27b24dd57d..55a154396c 100644
--- a/docs/url_dispatch.txt
+++ b/docs/url_dispatch.txt
@@ -148,11 +148,6 @@ The matching/grouping algorithm
Here's the algorithm the URLconf parser follows, with respect to named groups
vs. non-named groups in a regular expression:
- * If there are any named groups, it will use those as keyword arguments,
- ignoring any non-named groups.
- * Otherwise, it will pass all non-named groups as positional arguments.
- * In both cases, it will pass any extra
-
If there are any named arguments, it will use those, ignoring non-named arguments.
Otherwise, it will pass all non-named arguments as positional arguments.