From f8982930eb563b59d352ac79e4739d72a5fd40f9 Mon Sep 17 00:00:00 2001 From: Pramod Pujara Date: Sun, 7 Mar 2021 22:02:34 +0545 Subject: [PATCH] remove command cd .. The project layout shown with the command find . looks alike when we are in tutorial project(created with django-admin command) not in tutorial directory(created with mkdir). --- docs/tutorial/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/quickstart.md b/docs/tutorial/quickstart.md index ee54816dc..3fe386ade 100644 --- a/docs/tutorial/quickstart.md +++ b/docs/tutorial/quickstart.md @@ -22,7 +22,7 @@ Create a new Django project named `tutorial`, then start a new app called `quick django-admin startproject tutorial . # Note the trailing '.' character cd tutorial django-admin startapp quickstart - cd .. + The project layout should look like: