aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial/quickstart.md
diff options
context:
space:
mode:
authorPascal Borreli2013-05-28 15:09:23 +0100
committerPascal Borreli2013-05-28 15:09:23 +0100
commit8f35ac4f93c608eaced3f48a46e8922104e09182 (patch)
tree55b394b57fc7b0e40283d89dc23dd0b41dfc074d /docs/tutorial/quickstart.md
parent7123f0b1e6b29778c41476341bd2370f60c279fa (diff)
downloaddjango-rest-framework-8f35ac4f93c608eaced3f48a46e8922104e09182.tar.bz2
Fixed typos
Diffstat (limited to 'docs/tutorial/quickstart.md')
-rw-r--r--docs/tutorial/quickstart.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorial/quickstart.md b/docs/tutorial/quickstart.md
index c41cb63f..a80e31c0 100644
--- a/docs/tutorial/quickstart.md
+++ b/docs/tutorial/quickstart.md
@@ -10,7 +10,7 @@ Create a new Django project named `tutorial`, then start a new app called `quick
django-admin.py startproject tutorial
cd tutorial
- # Create a virtualenv to isolate our package dependancies locally
+ # Create a virtualenv to isolate our package dependencies locally
virtualenv env
source env/bin/activate
@@ -36,7 +36,7 @@ Next you'll need to get a database set up and synced. If you just want to use S
The run `syncdb` like so:
- python manange.py syncdb
+ python manage.py syncdb
Once you've set up a database and got everything synced and ready to go, open up the app's directory and we'll get coding...