aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial/6-resource-orientated-projects.md
diff options
context:
space:
mode:
authorMarko Tibold2012-10-21 16:34:07 +0200
committerMarko Tibold2012-10-21 16:34:07 +0200
commit71a93930fd4df7a1f5f92c67633b813a26a5e938 (patch)
treec82b5fdc3d69bc54aee06e506df7998e24db13e9 /docs/tutorial/6-resource-orientated-projects.md
parentefabd2bb1b762fbdee2b48fa3a6ccb8f23c7e8dc (diff)
downloaddjango-rest-framework-71a93930fd4df7a1f5f92c67633b813a26a5e938.tar.bz2
Fixing spelling errors.
Diffstat (limited to 'docs/tutorial/6-resource-orientated-projects.md')
-rw-r--r--docs/tutorial/6-resource-orientated-projects.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/6-resource-orientated-projects.md b/docs/tutorial/6-resource-orientated-projects.md
index e7190a77..9ee599ae 100644
--- a/docs/tutorial/6-resource-orientated-projects.md
+++ b/docs/tutorial/6-resource-orientated-projects.md
@@ -5,7 +5,7 @@ Resource classes are just View classes that don't have any handler methods bound
This allows us to:
* Encapsulate common behaviour across a class of views, in a single Resource class.
-* Separate out the actions of a Resource from the specfics of how those actions should be bound to a particular set of URLs.
+* Separate out the actions of a Resource from the specifics of how those actions should be bound to a particular set of URLs.
## Refactoring to use Resources, not Views