branch: externals/iterators
commit d2760c5e467f2d8b27fb0f0f122f0ae482bf2b11
Author: Michael Heerdegen <[email protected]>
Commit: Michael Heerdegen <[email protected]>
iterators.el: fix two typos
---
iterators.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/iterators.el b/iterators.el
index c951374..544b874 100644
--- a/iterators.el
+++ b/iterators.el
@@ -371,14 +371,14 @@ argument ilists are not modified."
(defun ilist-setcar (ilist object)
"Set the first element of ILIST to OBJECT.
-Error if ILIST is empty. Returns OBJECT."
+Error if ILIST is empty. Return OBJECT."
(if (ilist-empty-p ilist)
(signal 'empty-ilist nil)
(setcar ilist object)))
(defun ilist-setcdr (ilist newcdr)
"Set the `ilist-cdr' of ILIST to NEWCDR.
-Error if ILIST is empty. Returns NEWCDR."
+Error if ILIST is empty. Return NEWCDR."
(if (ilist-empty-p ilist)
(signal 'empty-ilist nil)
(setcdr ilist newcdr)))