summaryrefslogtreecommitdiff
path: root/lisp/play/cookie1.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/play/cookie1.el')
-rw-r--r--lisp/play/cookie1.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/play/cookie1.el b/lisp/play/cookie1.el
index be35daf4da8..d1bf45ed510 100644
--- a/lisp/play/cookie1.el
+++ b/lisp/play/cookie1.el
@@ -110,7 +110,7 @@ of load, ENDMSG at the end."
(fill-region-as-paragraph start (point) nil))))
(defun cookie1 (arg cookie-vec)
- "Inserts a cookie phrase ARG times."
+ "Insert a cookie phrase ARG times."
(cond ((zerop arg) t)
(t (insert (aref cookie-vec arg))
(insert " ")
@@ -118,8 +118,8 @@ of load, ENDMSG at the end."
;;;###autoload
(defun cookie-snarf (phrase-file &optional startmsg endmsg)
- "Reads in the PHRASE-FILE, returns it as a vector of strings.
-Emit STARTMSG and ENDMSG before and after. Caches the result; second
+ "Read the PHRASE-FILE, return it as a vector of strings.
+Emit STARTMSG and ENDMSG before and after. Cache the result; second
and subsequent calls on the same file won't go to disk."
(setq phrase-file (cookie-check-file phrase-file))
(let ((sym (intern-soft phrase-file cookie-cache)))