From c31000c6b8c1c520086af755645a21876bb6bacc Mon Sep 17 00:00:00 2001 From: Manas Date: Wed, 27 Jul 2016 12:28:41 +0530 Subject: [PATCH] Update startproject in example start-project should be startproject https://docs.djangoproject.com/en/1.9/ref/django-admin/#django-admin-startproject --- docs/writing/structure.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/writing/structure.rst b/docs/writing/structure.rst index 31f387ec9..7879d1707 100644 --- a/docs/writing/structure.rst +++ b/docs/writing/structure.rst @@ -271,7 +271,7 @@ following, as they always have: :: - $ django-admin.py start-project samplesite + $ django-admin.py startproject samplesite The resulting repository structure looks like this: @@ -293,7 +293,7 @@ Let's do it properly: :: - $ django-admin.py start-project samplesite . + $ django-admin.py startproject samplesite . Note the "``.``".