From e1cf60b3cf8850a4845795674d87d23772ec5db5 Mon Sep 17 00:00:00 2001 From: Abe Jellinek Date: Wed, 9 Oct 2024 13:42:18 -0400 Subject: [PATCH] Update subprocess() return type in doc comment --- chrome/content/zotero/xpcom/utilities_internal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/utilities_internal.js b/chrome/content/zotero/xpcom/utilities_internal.js index b510598ff5..df6ea64eae 100644 --- a/chrome/content/zotero/xpcom/utilities_internal.js +++ b/chrome/content/zotero/xpcom/utilities_internal.js @@ -623,7 +623,7 @@ Zotero.Utilities.Internal = { * * @param {String} command - The command to run; if no slashes, will search PATH for the command * @param {String[]} args - An array of arguments to pass to the command - * @return {String} + * @return {Promise} */ subprocess: async function (command, args = []) { // eslint-disable-next-line no-undef