aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial/6-resource-orientated-projects.md
diff options
context:
space:
mode:
authorDaniel Sokolowski2012-10-21 07:52:10 -0700
committerDaniel Sokolowski2012-10-21 07:52:10 -0700
commitd53ee8a10c5fd3c95a577a409d39a394a838b0b7 (patch)
treed9228a3fe855ac0c4ab4cb7be579415e3b52627a /docs/tutorial/6-resource-orientated-projects.md
parentefabd2bb1b762fbdee2b48fa3a6ccb8f23c7e8dc (diff)
parent65d4970bf71d31669f10dc0cecd4a2a00acd7393 (diff)
downloaddjango-rest-framework-d53ee8a10c5fd3c95a577a409d39a394a838b0b7.tar.bz2
Merge pull request #308 from markotibold/docs-edits
Documentation spelling and other mistake fixes.
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