From 3fc42076c23d33e84b99180e617b6cb6815f2f64 Mon Sep 17 00:00:00 2001 From: Andreas Date: Sun, 8 Jan 2017 06:04:21 +0100 Subject: [PATCH] Update file tree to reflect actual folder created The file tree visualization gave the impression that Sources, Public, Resources and Package.swift would all be created in the current folder after running `vapor new Hello`, which isn't the case. --- getting-started/hello-world.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/getting-started/hello-world.md b/getting-started/hello-world.md index 612d0c7d..e4d0c8a6 100644 --- a/getting-started/hello-world.md +++ b/getting-started/hello-world.md @@ -19,7 +19,7 @@ vapor new Hello Vapor's folder structure will probably look familiar to you if you have worked with other web frameworks. ``` -. +Hello ├── Sources │ └── App │ └── Controllers @@ -35,7 +35,7 @@ Vapor's folder structure will probably look familiar to you if you have worked w For our Hello, World project, we will be focusing on the `main.swift` file. ``` -. +Hello └── Sources └── App └── main.swift