From f842023ea346e89f51eb3f8d0ebfff39682e1989 Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Wed, 2 Apr 2025 09:08:36 +0200 Subject: [PATCH] chore(lib/readme): use real-world example for directory structure vision --- lib/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/README.md b/lib/README.md index fb987247a..bbe24ed65 100644 --- a/lib/README.md +++ b/lib/README.md @@ -44,15 +44,15 @@ Example filetree ```sh . ├── default.nix -├── feature_foo +├── build-clan │ ├── impl.nix │ └── test.nix -└── feature_bar +└── inventory ├── impl.nix - ├── complex-subfeature + ├── services-subfeature │ ├── impl.nix │ └── test.nix - ├── testless-subfeature # <- We immediately see that this feature is not tested on itself. + ├── instances-subfeature # <- We immediately see that this feature is not tested on itself. │ └── impl.nix └── test.nix ```