resolve comments

This commit is contained in:
Greyfeather
2025-05-21 19:31:52 -06:00
parent 0cc04bd2e4
commit 61979a4a58
@@ -21,7 +21,7 @@ function getDomain(url) {
} }
/** /**
* Returns the base path of the passed in url or null * Returns the base url of the passed in url or null
* @param { string } url * @param { string } url
* @returns { string | null } * @returns { string | null }
*/ */
@@ -31,7 +31,7 @@ function getBaseUrl(url) {
} }
/** /**
* Escapes single quotes * Escapes single quotes in shell commands
* @param { string } str * @param { string } str
* @returns { string } * @returns { string }
*/ */
@@ -43,7 +43,7 @@ function shellSingleQuoteEscape(str) {
} }
/** /**
* Splits markdown Blocks * Splits markdown blocks into three different types: text, think, and code.
* @param { string } markdown * @param { string } markdown
*/ */
function splitMarkdownBlocks(markdown) { function splitMarkdownBlocks(markdown) {