diff options
author | Thanos Apollo <[email protected]> | 2024-09-15 02:50:41 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-09-15 02:50:41 +0300 |
commit | a542549906530ca8c88002988db97590373008f4 (patch) | |
tree | 644c29f29f92490f8bac6c73c2a32c3d5547c4de /gnosis.el | |
parent | 6320d065e82b9462824895f55b75d8ee9be468e7 (diff) |
Fix docstring typos
Diffstat (limited to 'gnosis.el')
-rw-r--r-- | gnosis.el | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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) |