aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Christie2013-05-31 22:42:38 -0700
committerTom Christie2013-05-31 22:42:38 -0700
commit27520b04e1c629235eb5adeaafa27b22cab0a451 (patch)
tree5aa8f83a8d99c970451d801bb717a67b98b687e6
parent363b342548a41bfdcc3358595cd9d1de288c4962 (diff)
parent9154b09eb98593411605a35e6aa342e3c00d63ce (diff)
downloaddjango-rest-framework-27520b04e1c629235eb5adeaafa27b22cab0a451.tar.bz2
Merge pull request #903 from craigteegarden/patch-1
fix typo
-rw-r--r--docs/api-guide/filtering.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/filtering.md b/docs/api-guide/filtering.md
index 4242f40d..05c997a3 100644
--- a/docs/api-guide/filtering.md
+++ b/docs/api-guide/filtering.md
@@ -231,7 +231,7 @@ Multiple orderings may also be specified:
If an `ordering` attribute is set on the view, this will be used as the default ordering.
-Typicaly you'd instead control this by setting `order_by` on the initial queryset, but using the `ordering` parameter on the view allows you to specify the ordering in a way that it can then be passed automatically as context to a rendered template. This makes it possible to automatically render column headers differently if they are being used to order the results.
+Typically you'd instead control this by setting `order_by` on the initial queryset, but using the `ordering` parameter on the view allows you to specify the ordering in a way that it can then be passed automatically as context to a rendered template. This makes it possible to automatically render column headers differently if they are being used to order the results.
class UserListView(generics.ListAPIView):
queryset = User.objects.all()