From 7093183140ec0025d8f0bbc56d7e3261cbd42b45 Mon Sep 17 00:00:00 2001 From: alex Date: Sat, 5 Jul 2025 13:50:41 +0300 Subject: [PATCH] Fix directory tree representation in README.md to accurately reflect file count --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 03a09e9..55a78ff 100644 --- a/README.md +++ b/README.md @@ -13,12 +13,14 @@ The basic directory tree looks something like this ├── bin │   └── node Node core binary file ├── com -│ ├── echo.lua -│ ├── _globals.lua Declaring global variables and functions for all internal scripts (also required for luarc to work correctly) -│ └── _prepare.lua Script that is executed before each script launch +│   ├── echo.lua +│   ├── _globals.lua Declaring global variables and functions for all internal scripts (also required for luarc to work correctly) +│   └── _prepare.lua Script that is executed before each script launch +├── config.yaml └── Makefile -3 directories, 4 files +3 directories, 6 files + ``` Launch by command ```bash