From 94b368468d9657feaae6288a7e98b726c4b187f2 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Sun, 11 Nov 2018 11:20:45 +0100 Subject: [PATCH] fix directory tree markup --- configuration/configuration_organization.rst | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/configuration/configuration_organization.rst b/configuration/configuration_organization.rst index ada824c1086..b3a06a89aae 100644 --- a/configuration/configuration_organization.rst +++ b/configuration/configuration_organization.rst @@ -49,16 +49,16 @@ this structure: your-project/ ├─ config/ - │ └─ packages/ - │ | ├─ dev/ - | | │ ├─ framework.yaml - │ | │ └─ ... - │ | ├─ prod/ - │ | │ └─ ... - │ | ├─ test/ - │ | │ └─ ... - | | ├─ framework.yaml - │ | └─ ... + │ ├─ packages/ + │ │ ├─ dev/ + │ │ │ ├─ framework.yaml + │ │ │ └─ ... + │ │ ├─ prod/ + │ │ │ └─ ... + │ │ ├─ test/ + │ │ │ └─ ... + │ │ ├─ framework.yaml + │ │ └─ ... │ ├─ services.yaml │ └─ services_dev.yaml ├─ ...