Update subprocess() return type in doc comment

This commit is contained in:
Abe Jellinek 2024-10-09 13:42:18 -04:00
parent f22f87537c
commit e1cf60b3cf

View file

@ -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<String>}
*/
subprocess: async function (command, args = []) {
// eslint-disable-next-line no-undef