aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial/quickstart.md
diff options
context:
space:
mode:
authorStephan Groß2013-05-28 07:39:56 -0700
committerStephan Groß2013-05-28 07:39:56 -0700
commitf6d7f54fc15ed3bb97b1d97ff1ecaf99e933660e (patch)
treea1c18df58b9b8ae459d1c36ff083855e6c942844 /docs/tutorial/quickstart.md
parent22e1950e1cca237e6edeea3ddc9c798b975c6183 (diff)
parent8f35ac4f93c608eaced3f48a46e8922104e09182 (diff)
downloaddjango-rest-framework-f6d7f54fc15ed3bb97b1d97ff1ecaf99e933660e.tar.bz2
Merge pull request #897 from pborreli/typos
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...