summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoost Kremers <joostkremers@fastmail.fm>2017-03-09 23:45:30 +0100
committerJoost Kremers <joostkremers@fastmail.fm>2017-03-09 23:45:30 +0100
commitfab63fef6509dd7640a805e108e354257af9e937 (patch)
tree62aec8c98adaf79295d4187bb2524e2246dd5935
parent1f09f3e0f16b9965452cb72fa62f47ef4b095427 (diff)
Replace 3rd person with imperative verb in doc string.
-rw-r--r--parsebib.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/parsebib.el b/parsebib.el
index 4024406..be2ea15 100644
--- a/parsebib.el
+++ b/parsebib.el
@@ -210,7 +210,7 @@ point."
(buffer-substring-no-properties beg (point))))))
(defun parsebib-replace-strings (val strings)
- "Replaces strings in VAL using (key, value) pairs from hash table STRINGS."
+ "Replace strings in VAL using (key, value) pairs from hash table STRINGS."
(replace-regexp-in-string "\"" "" (string-join (mapcar
(lambda (x) (if strings (gethash x strings x) x))
(split-string val " # " t)))))