From 56f394cefd04696a5192fef9bbff8ba0e5b0583f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Will=20=E4=BF=9D=E5=93=A5?= <88981+doggy8088@users.noreply.github.com> Date: Sun, 21 Sep 2025 07:04:56 +0800 Subject: [PATCH] fix(docs): fix a few Markdown syntax errorrs (#8995) Co-authored-by: anthony bushong --- docs/core/memport.md | 4 ++-- docs/integration-tests.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/core/memport.md b/docs/core/memport.md index cc96aad3fd..68dd34cc41 100644 --- a/docs/core/memport.md +++ b/docs/core/memport.md @@ -147,7 +147,7 @@ Processes import statements in GEMINI.md content. - `debugMode` (boolean, optional): Whether to enable debug logging (default: false) - `importState` (ImportState, optional): State tracking for circular import prevention -**Returns:** Promise - Object containing processed content and import tree +**Returns:** Promise<ProcessImportsResult> - Object containing processed content and import tree ### `ProcessImportsResult` @@ -187,7 +187,7 @@ Finds the project root by searching for a `.git` directory upwards from the give - `startDir` (string): The directory to start searching from -**Returns:** Promise - The project root directory (or the start directory if no `.git` is found) +**Returns:** Promise<string> - The project root directory (or the start directory if no `.git` is found) ## Best Practices diff --git a/docs/integration-tests.md b/docs/integration-tests.md index 6289b7a7c6..85e02aacef 100644 --- a/docs/integration-tests.md +++ b/docs/integration-tests.md @@ -20,7 +20,7 @@ npm run test:e2e ## Running a specific set of tests -To run a subset of test files, you can use `npm run ....` where is either `test:e2e` or `test:integration*` and `` is any of the `.test.js` files in the `integration-tests/` directory. For example, the following command runs `list_directory.test.js` and `write_file.test.js`: +To run a subset of test files, you can use `npm run ....` where <integration test command> is either `test:e2e` or `test:integration*` and `` is any of the `.test.js` files in the `integration-tests/` directory. For example, the following command runs `list_directory.test.js` and `write_file.test.js`: ```bash npm run test:e2e list_directory write_file