diff options
| author | Johannes | 2013-05-17 12:27:48 +0200 | 
|---|---|---|
| committer | Johannes | 2013-05-17 12:27:48 +0200 | 
| commit | df11198c6cfd543925eabc95d10c596c40ab3ab5 (patch) | |
| tree | 08ee8704795611a462383f1ec7225354f24a7af2 /docs | |
| parent | 646b3b266d2bbfca23d4b1c0c00072cb56cfe8c1 (diff) | |
| download | django-rest-framework-df11198c6cfd543925eabc95d10c596c40ab3ab5.tar.bz2 | |
Fix typo + grammar in viewsets docs
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/api-guide/viewsets.md | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/docs/api-guide/viewsets.md b/docs/api-guide/viewsets.md index e354a43a..cd92dc58 100644 --- a/docs/api-guide/viewsets.md +++ b/docs/api-guide/viewsets.md @@ -13,11 +13,11 @@ A `ViewSet` class is simply **a type of class-based View, that does not provide  The method handlers for a `ViewSet` are only bound to the corresponding actions at the point of finalizing the view, using the `.as_view()` method. -Typically, rather than exlicitly registering the views in a viewset in the urlconf, you'll register the viewset with a router class, that automatically determines the urlconf for you. +Typically, rather than explicitly registering the views in a viewset in the urlconf, you'll register the viewset with a router class, that automatically determines the urlconf for you.  ## Example -Let's define a simple viewset that can be used to listing or retrieving all the users in the system. +Let's define a simple viewset that can be used to list or retrieve all the users in the system.      class UserViewSet(viewsets.ViewSet):          """ | 
