From b1f291d7527b55f203fd883150a80fc1a77ad9d8 Mon Sep 17 00:00:00 2001 From: Jeff Borisch Date: Mon, 8 Jul 2019 16:51:22 -0400 Subject: [PATCH] Change directory layout examples for consistency (#611) Directory layout examples were changed to use trailing slashes. Rationale: * consistent with examples in the Python [modules tutorial](https://docs.python.org/3/tutorial/modules.html#packages) * consistent with example currently on line 208 (dist/) * removing the first leading slash avoids possible confusion that you are to work in the root directory --- source/tutorials/packaging-projects.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/tutorials/packaging-projects.rst b/source/tutorials/packaging-projects.rst index fedc9aa95..a2455205a 100644 --- a/source/tutorials/packaging-projects.rst +++ b/source/tutorials/packaging-projects.rst @@ -17,8 +17,8 @@ To create this project locally, create the following file structure: .. code-block:: text - /packaging_tutorial - /example_pkg + packaging_tutorial/ + example_pkg/ __init__.py @@ -48,8 +48,8 @@ them in the following steps. .. code-block:: text - /packaging_tutorial - /example_pkg + packaging_tutorial/ + example_pkg/ __init__.py setup.py LICENSE