summaryrefslogtreecommitdiff
path: root/gnosis.el
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2024-09-15 02:50:41 +0300
committerThanos Apollo <[email protected]>2024-09-15 02:50:41 +0300
commita542549906530ca8c88002988db97590373008f4 (patch)
tree644c29f29f92490f8bac6c73c2a32c3d5547c4de /gnosis.el
parent6320d065e82b9462824895f55b75d8ee9be468e7 (diff)
Fix docstring typos
Diffstat (limited to 'gnosis.el')
-rw-r--r--gnosis.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/gnosis.el b/gnosis.el
index 9b71a76..bad0973 100644
--- a/gnosis.el
+++ b/gnosis.el
@@ -1193,7 +1193,8 @@ Valid cloze formats include:
(defun gnosis-cloze-extract-answers (nested-lst)
"Extract cloze answers for string clozes inside the NESTED-LST.
-This function should be used in combination with `gnosis-cloze-extract-answers'."
+This function should be used in combination with
+`gnosis-cloze-extract-contents'."
(mapcar (lambda (lst)
(mapcar (lambda (str)
(replace-regexp-in-string "::\\(.*\\)" "" str))
@@ -1203,7 +1204,8 @@ This function should be used in combination with `gnosis-cloze-extract-answers'.
(defun gnosis-cloze-extract-hints (nested-lst)
"Extract cloze hints for string clozes inside the NESTED-LST.
-This function should be used in combination with `gnosis-cloze-extract-answers'."
+This function should be used in combination with
+`gnosis-cloze-extract-contents'."
(mapcar (lambda (lst)
(mapcar (lambda (str)
(when (string-match "::\\(.*\\)" str)