From 79c207b41dfb5f9af78fde50d4e5660f7deaf324 Mon Sep 17 00:00:00 2001 From: Adithya Appu <37062841+adithyaappu@users.noreply.github.com> Date: Wed, 19 Feb 2025 16:35:05 +0530 Subject: [PATCH] Update basic-usage to reflect new default to `src` layout #10135 The change in folder layout when new project is created, was not updated in the `Basic Usage` documentation. This just updates the structure with the folder layout from the CLI reference. --- docs/basic-usage.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/basic-usage.md b/docs/basic-usage.md index a1326e6b366..0441664ab3f 100644 --- a/docs/basic-usage.md +++ b/docs/basic-usage.md @@ -28,8 +28,9 @@ This will create the `poetry-demo` directory with the following content: poetry-demo ├── pyproject.toml ├── README.md -├── poetry_demo -│ └── __init__.py +├── src +│ └── poetry_demo +│ └── __init__.py └── tests └── __init__.py ```