econchick / new-coder

New Coder tutorials
zlib License
597 stars 394 forks source link

Missing repo folder in project diagram in Setup Your Machine post #132

Closed nrrb closed 9 years ago

nrrb commented 9 years ago

In the Get The Tutorial Code section of the Setup Your Machine page, there is a little typo in the file tree explaining the project layout. After cloning the repository with git clone https://github.com/econchick/new-coder.git, the diagram shows the subfolders of the repository as direct descendents of the 'Projects' folder created a couple steps before:

.
└── Projects/
    ├── AUTHORS.md
    ├── CONTRIBUTING.md
    ├── LICENSE
    ├── README.md
    ├── apis/     # sample code for tutorial #2
    ├── dataviz/  # sample code for tutorial #1
    ├── gui/      # sample code for tutorial #5
    ├── network/  # sample code for tutorial #4
    ├── scrape/   # sample code for tutorial #3
    └── website/  # files that make newcoder.io

This should instead be:

.
└── Projects/
    └── new-coder/
        ├── AUTHORS.md
        ├── CONTRIBUTING.md
        ├── LICENSE
        ├── README.md
        ├── apis/     # sample code for tutorial #2
        ├── dataviz/  # sample code for tutorial #1
        ├── gui/      # sample code for tutorial #5
        ├── network/  # sample code for tutorial #4
        ├── scrape/   # sample code for tutorial #3
        └── website/  # files that make newcoder.io

There is another example after this one with the same omission of the new-coder parent folder. It should change from:

.
└── Projects/
    # <-- snip -->
    ├── apis/     # sample code for tutorial #2
    ├── apis_workspace/ # your code for tutorial #2
    ├── dataviz/  # sample code for tutorial #1
    ├── dataviz_workspace/ # your code for tutorial #1
    ├── gui/      # sample code for tutorial #5
    ├── gui_workspace/ # your code for tutorial #5
    ├── network/  # sample code for tutorial #4
    ├── network_workspace/ # your code for tutorial #4
    ├── scrape/   # sample code for tutorial #3
    ├── scrape_workspace/ # your code for tutorial #3
    └── website/  # files that make newcoder.io

to:

.
└── Projects/
    └── new-coder/
        # <-- snip -->
        ├── apis/     # sample code for tutorial #2
        ├── apis_workspace/ # your code for tutorial #2
        ├── dataviz/  # sample code for tutorial #1
        ├── dataviz_workspace/ # your code for tutorial #1
        ├── gui/      # sample code for tutorial #5
        ├── gui_workspace/ # your code for tutorial #5
        ├── network/  # sample code for tutorial #4
        ├── network_workspace/ # your code for tutorial #4
        ├── scrape/   # sample code for tutorial #3
        ├── scrape_workspace/ # your code for tutorial #3
        └── website/  # files that make newcoder.io
econchick commented 9 years ago

Thank you so much! I just incorporated your PR (couldn't merge it directly because I'm doing a huge site update). Much appreciated!