diff options
author | Thanos Apollo <[email protected]> | 2024-01-01 13:01:20 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-01-01 13:02:12 +0200 |
commit | 850c4a94a01471b18bdeee0e9d074ab162cab390 (patch) | |
tree | e313ea2cb076f22befe60d698a03a5d89ae48e24 | |
parent | e7e0ba9fcc65e047ee8a2d4a8dd1a3a6d0c55980 (diff) |
Fix typos & indentation
-rw-r--r-- | gnosis.el | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -273,7 +273,7 @@ Set SPLIT to t to split all input given." (defun gnosis-suspend-note (id) "Suspend note with ID." - (gnosis-update 'review-log `(= suspend 1) `(= id ,id))) + (gnosis-update 'review-log '(= suspend 1) `(= id ,id))) (defun gnosis-suspend-deck (&optional deck) "Suspend all note(s) with DECK id. @@ -399,7 +399,7 @@ SUSPEND: When t, note will be ignored for reviews." :question (read-string "Question: ") :answer (read-string "Answer: ") :image (when (y-or-n-p "Add image to display during review?") - (completing-read "Select image: " (gnosis-directory-files))) + (completing-read "Select image: " (gnosis-directory-files))) :hint (read-string "Hint: ") :extra (read-string "Extra: ") :tags (gnosis-tag-prompt))))) |