summaryrefslogtreecommitdiff
path: root/wttrin.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-11-13 12:16:09 -0600
committerCraig Jennings <c@cjennings.net>2025-11-13 12:16:09 -0600
commitb5633450732d6496c49a0628c8db80121d97facc (patch)
tree13c4d52e547e50b74019c97c46fe37c02a5b6b70 /wttrin.el
parenta718db0d64a31655ef3f0e60997cce3d465e312e (diff)
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
Diffstat (limited to 'wttrin.el')
-rw-r--r--wttrin.el4
1 files changed, 2 insertions, 2 deletions
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))