From 39842847109ff6a57cc418818f17d61085832829 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=85=B3=E6=83=A0=E6=B0=91?= <9155544@qq.com> Date: Mon, 27 Apr 2026 16:09:03 +0800 Subject: [PATCH] docs(installer): fix JSDoc annotation for cloneRepo param Correct @param backtick escaping in cloneRepo JSDoc. Also documents HTTP as a supported protocol alongside HTTPS and SSH. --- tools/installer/modules/custom-module-manager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/installer/modules/custom-module-manager.js b/tools/installer/modules/custom-module-manager.js index 479cfec64..92644a934 100644 --- a/tools/installer/modules/custom-module-manager.js +++ b/tools/installer/modules/custom-module-manager.js @@ -312,7 +312,7 @@ class CustomModuleManager { /** * Clone a custom module repository to cache. * Supports any Git host (GitHub, GitLab, Bitbucket, self-hosted, etc.). - * `@param` {string} sourceInput - Git URL (HTTPS, HTTP, or SSH) + * @param {string} sourceInput - Git URL (HTTPS, HTTP, or SSH) * @param {Object} [options] - Clone options * @param {boolean} [options.silent] - Suppress spinner output * @param {boolean} [options.skipInstall] - Skip npm install (for browsing before user confirms)