From 61979a4a58d93dbc3ad1f2f567ae3820ef7b0067 Mon Sep 17 00:00:00 2001 From: Greyfeather Date: Wed, 21 May 2025 19:31:52 -0600 Subject: [PATCH] resolve comments --- .config/quickshell/modules/common/functions/string_utils.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/quickshell/modules/common/functions/string_utils.js b/.config/quickshell/modules/common/functions/string_utils.js index d3784637c..23b0f1f88 100644 --- a/.config/quickshell/modules/common/functions/string_utils.js +++ b/.config/quickshell/modules/common/functions/string_utils.js @@ -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 * @returns { string | null } */ @@ -31,7 +31,7 @@ function getBaseUrl(url) { } /** - * Escapes single quotes + * Escapes single quotes in shell commands * @param { string } str * @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 */ function splitMarkdownBlocks(markdown) {