From 25397b81028dbe505ef74ae556685e8b6b68b1dc Mon Sep 17 00:00:00 2001 From: kigland Date: Sun, 1 Mar 2026 16:53:06 +0800 Subject: [PATCH] docs: fix incorrect source directory reference in CONTRIBUTING.md The contributing guide referenced `rust` as the directory containing the Rust source code, but the actual directory is `src`. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f87fbbd7..6f73f86d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -23,7 +23,7 @@ To get started, make sure you have the following installed: - [Rust](https://www.rust-lang.org/) - [Node.js](https://nodejs.org/) -The schema files in the `/schema` directory are generated from the Rust code in the `rust` directory. You can always generate the latest schema files by running `npm run generate` which will also format the files for you. +The schema files in the `/schema` directory are generated from the Rust code in the `src` directory. You can always generate the latest schema files by running `npm run generate` which will also format the files for you. Spellchecking is done via `npm run spellcheck`.