org-persist: Add missing end quote to docstrings

* lisp/org-persist.el (org-persist--load-index,
org-persist--save-index): Add missing end quote to the docstrings.
This commit is contained in:
TEC 2022-12-10 21:41:46 +08:00
parent 8800d28e84
commit 5b076f5057
Signed by: tec
SSH Key Fingerprint: SHA256:eobz41Mnm0/iYWBvWThftS0ElEs1ftBr6jamutnXc/A
1 changed files with 2 additions and 2 deletions

View File

@ -601,7 +601,7 @@ COLLECTION is the plist holding data collection."
(plist-put (org-persist--get-collection container) :expiry 'never))))
(defun org-persist--load-index ()
"Load `org-persist--index."
"Load `org-persist--index'."
(org-persist-load:index
`(index ,org-persist--storage-version)
(org-file-name-concat org-persist-directory org-persist-index-file)
@ -694,7 +694,7 @@ COLLECTION is the plist holding data collection."
(org-file-name-concat org-persist-directory org-persist-index-file)))
(defun org-persist--save-index ()
"Save `org-persist--index."
"Save `org-persist--index'."
(org-persist-write:index
`(index ,org-persist--storage-version) nil))