aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Christie2014-11-19 16:07:46 +0000
committerTom Christie2014-11-19 16:07:46 +0000
commit8df66450129aa265fbc831b8fd13d0863e15e5a4 (patch)
treee47d53a1da0994bfc5b2ddb20bb6c4e3711e7390
parent40b1ea919b00bd8bf1f53f8eb8bf33a498b237b8 (diff)
parent928cbc640ef1db2c3fb96d352f69b8ffb66313e6 (diff)
downloaddjango-rest-framework-8df66450129aa265fbc831b8fd13d0863e15e5a4.tar.bz2
Merge pull request #2097 from raonyguimaraes/master
small type
-rw-r--r--docs/tutorial/quickstart.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/quickstart.md b/docs/tutorial/quickstart.md
index c2dc4bea..1c398c1f 100644
--- a/docs/tutorial/quickstart.md
+++ b/docs/tutorial/quickstart.md
@@ -19,7 +19,7 @@ Create a new Django project named `tutorial`, then start a new app called `quick
pip install djangorestframework
# Set up a new project with a single application
- django-admin.py startproject tutorial .
+ django-admin.py startproject tutorial
cd tutorial
django-admin.py startapp quickstart
cd ..