Skip to content

Commit b1f291d

Browse files
horshacktesttheacodes
authored andcommitted
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
1 parent b8e6e7e commit b1f291d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

source/tutorials/packaging-projects.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ To create this project locally, create the following file structure:
1717

1818
.. code-block:: text
1919
20-
/packaging_tutorial
21-
/example_pkg
20+
packaging_tutorial/
21+
example_pkg/
2222
__init__.py
2323
2424
@@ -48,8 +48,8 @@ them in the following steps.
4848

4949
.. code-block:: text
5050
51-
/packaging_tutorial
52-
/example_pkg
51+
packaging_tutorial/
52+
example_pkg/
5353
__init__.py
5454
setup.py
5555
LICENSE

0 commit comments

Comments
 (0)