From d09df077da3f5662c22e0497db69d037e752ea56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Tue, 3 Oct 2017 19:00:03 +0200 Subject: [PATCH] Use proper directory structure for Phoenix --- phoenix.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/phoenix.md b/phoenix.md index 2c3bc6278..c80d4094c 100644 --- a/phoenix.md +++ b/phoenix.md @@ -36,15 +36,15 @@ See: [Installation](https://hexdocs.pm/phoenix/installation.html) _(hexdocs.pm)_ ├── deps/ ├── lib/ │ ├── hello/ -│ └── hello_web/ -│ ├── channels/ -│ ├── controllers/ -│ ├── templates/ -│ ├── views/ -│ ├── router.ex -│ └── gettext.ex -├── hello.ex -├── hello_web.ex +│ ├── hello.ex +│ ├── hello_web/ +│ │ ├── channels/ +│ │ ├── controllers/ +│ │ ├── templates/ +│ │ ├── views/ +│ │ ├── router.ex +│ │ └── gettext.ex +│ └── hello_web.ex ├── priv/ └── test/ ```