aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Christie2014-12-17 15:22:27 +0000
committerTom Christie2014-12-17 15:22:27 +0000
commit1ba822010d0943c67c127f3f62e873b64348ef87 (patch)
tree08c118d51c90b23762b63eab0362e5e4ac9d3f51
parent426547c61c725ca7dc47671c084d1a2805c92305 (diff)
downloaddjango-rest-framework-1ba822010d0943c67c127f3f62e873b64348ef87.tar.bz2
Highlight trailing '.' in command so it wont be missed.
-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 c3f95994..a4474c34 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 . # Note the trailing '.' character
cd tutorial
django-admin.py startapp quickstart
cd ..