From b5633450732d6496c49a0628c8db80121d97facc Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 13 Nov 2025 12:16:09 -0600 Subject: doc: core: fix checkdoc warnings in docstrings Fixed two checkdoc issues in recently added functions: - Added double space after period in wttrin--extract-response-body - Quoted url-retrieve symbol in wttrin--handle-fetch-callback --- wttrin.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'wttrin.el') diff --git a/wttrin.el b/wttrin.el index 8ea00b2..85eb5c3 100644 --- a/wttrin.el +++ b/wttrin.el @@ -216,7 +216,7 @@ This is a pure function with no side effects, suitable for testing." (defun wttrin--extract-response-body () "Extract and decode HTTP response body from current buffer. Skips headers and returns UTF-8 decoded body. -Returns nil on error. Kills buffer when done." +Returns nil on error. Kills buffer when done." (condition-case err (unwind-protect (progn @@ -238,7 +238,7 @@ Returns nil on error. Kills buffer when done." nil))) (defun wttrin--handle-fetch-callback (status callback) - "Handle url-retrieve callback STATUS and invoke CALLBACK with result. + "Handle `url-retrieve' callback STATUS and invoke CALLBACK with result. Extracts response body or handles errors, then calls CALLBACK with data or nil." (when (featurep 'wttrin-debug) (wttrin--debug-log "wttrin--handle-fetch-callback: Invoked with status = %S" status)) -- cgit v1.2.3