diff options
author | Sergey Ponomarev <stokito@gmail.com> | 2024-01-19 20:04:32 +0200 |
---|---|---|
committer | Sergey Ponomarev <stokito@gmail.com> | 2024-01-23 09:29:12 +0200 |
commit | 0223b45e3ebddcb4c3b6f06cb0b5ec563ecd31f7 (patch) | |
tree | 681fd066403d97f5cd8442f67ed2bc65e4b1230f /applications/luci-app-example | |
parent | a4fd238ab2e5312fe549f76dbe4a63912b43a3fb (diff) |
luci-app-example: replace NBSP with a space
It looks like an IDE replaced some spaces with a Non-breaking space.
It's not needed here
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
Diffstat (limited to 'applications/luci-app-example')
-rw-r--r-- | applications/luci-app-example/structure.md | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/applications/luci-app-example/structure.md b/applications/luci-app-example/structure.md index e03847f424..6d3b67e820 100644 --- a/applications/luci-app-example/structure.md +++ b/applications/luci-app-example/structure.md @@ -3,31 +3,31 @@ ``` . ├── htdocs -│ └── luci-static -│ └── resources -│ └── view -│ └── example -│ ├── form.js -│ ├── htmlview.js -│ └── rpc.js +│ └── luci-static +│ └── resources +│ └── view +│ └── example +│ ├── form.js +│ ├── htmlview.js +│ └── rpc.js ├── Makefile ├── po -│ ├── templates -│ │ └── example.pot +│ ├── templates +│ │ └── example.pot ├── README.md └── root ├── etc - │ ├── luci.example.yaml - │ └── uci-defaults - │ └── 80_example + │ ├── luci.example.yaml + │ └── uci-defaults + │ └── 80_example └── usr ├── libexec - │ └── rpcd - │ └── luci.example + │ └── rpcd + │ └── luci.example └── share ├── luci - │ └── menu.d - │ └── luci-app-example.json + │ └── menu.d + │ └── luci-app-example.json └── rpcd └── acl.d └── luci-app-example.json |