From e668c8b26174aab062c7cf324cc4fde496278113 Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Sun, 15 Jun 2025 19:43:24 +0800 Subject: [PATCH] Fix comment --- server/util-server.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/util-server.js b/server/util-server.js index ce2e07a42..cab531162 100644 --- a/server/util-server.js +++ b/server/util-server.js @@ -1100,8 +1100,8 @@ module.exports.axiosAbortSignal = (timeoutMs) => { /** * Async version of fs.existsSync - * @param path - * @returns {Promise} + * @param {PathLike} path File path + * @returns {Promise} True if file exists, false otherwise */ function fsExists(path) { return new Promise(function (resolve, reject) {