From 39beeb9b4b9b9a540c63e27d1c856364d1ca2ac2 Mon Sep 17 00:00:00 2001 From: nelsondeleonc-source <314703811+nelsondeleonc-source@users.noreply.github.com> Date: Wed, 12 Aug 2026 20:56:28 +0100 Subject: [PATCH] docs: fix article typo (an extract_) in ARCHITECTURE.md --- ARCHITECTURE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ARCHITECTURE.md b/ARCHITECTURE.md index 5672bf0d..04e2ef29 100644 --- a/ARCHITECTURE.md +++ b/ARCHITECTURE.md @@ -57,7 +57,7 @@ Every extractor returns: ## Adding a new language extractor -1. Add a `extract_(path: Path) -> dict` function in `extract.py` following the existing pattern (tree-sitter parse → walk nodes → collect `nodes` and `edges` → call-graph second pass for INFERRED `calls` edges). +1. Add an `extract_(path: Path) -> dict` function in `extract.py` following the existing pattern (tree-sitter parse → walk nodes → collect `nodes` and `edges` → call-graph second pass for INFERRED `calls` edges). 2. Register the file suffix in `extract()` dispatch and `collect_files()`. 3. Add the suffix to `CODE_EXTENSIONS` in `detect.py` and `_WATCHED_EXTENSIONS` in `watch.py`. 4. Add the tree-sitter package to `pyproject.toml` dependencies.