From 7823a43f627e5a14fc92238783480d52ae5ed1ce Mon Sep 17 00:00:00 2001 From: Genteure Date: Thu, 17 Apr 2025 00:53:56 +0800 Subject: [PATCH] docs: fix path typo in module-creation.md (#2920) --- docs/docs/development/module-creation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/development/module-creation.md b/docs/docs/development/module-creation.md index 17eb157db..edbd96b60 100644 --- a/docs/docs/development/module-creation.md +++ b/docs/docs/development/module-creation.md @@ -108,7 +108,7 @@ The repository comes with a number of files and folders already positioned for y | | `keyboard` | `component` | `behavior` | `driver` | `feature` | `vfx` | | ---------------- | ---------- | ----------- | ---------- | -------- | --------- | ----- | -| `board/` | ✅ | ✅ | ❌ | ❌ | ❌ | ✅ | +| `boards/` | ✅ | ✅ | ❌ | ❌ | ❌ | ✅ | | `dts/` | ❌ | ❌ | ✅ | ✅ | ✅ | ❌ | | `CMakeLists.txt` | ❌ | ❌ | ✅ | ✅ | ✅ | ✅ | | `Kconfig` | ❌ | ❌ | ✅ | ✅ | ✅ | ✅ | @@ -120,7 +120,7 @@ The below table reminds of the purpose of each of these files and folders, if yo | File or Folder | Description | | ---------------- | ------------------------------------------------------------------------------------- | -| `board/` | Folder containing definitions for boards, shields and interconnects | +| `boards/` | Folder containing definitions for boards, shields and interconnects | | `dts/` | Folder containing devicetree bindings and includes with devicetree nodes (.dtsi) | | `CMakeLists.txt` | CMake configuration to specify source files to build | | `Kconfig` | Kconfig file for the module |