Skip to content

Commit

Permalink
Change directory layout examples for consistency (#611)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
horshacktest authored and theacodes committed Jul 8, 2019
1 parent b8e6e7e commit b1f291d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions source/tutorials/packaging-projects.rst
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit b1f291d

Please sign in to comment.