summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--deque.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/deque.lisp b/deque.lisp
index 112e224..7fca7e1 100644
--- a/deque.lisp
+++ b/deque.lisp
@@ -2,7 +2,7 @@
;;; deque data type for Lisp
;;;
;;; Copyright 2012 Kaz Kylheku <kaz@kylheku.com>
-;;;
+;;;
;;; With the help of the pop-deque macro below, you can represent
;;; a deque using two Lisp lists. Use one list for the
;;; front end of the deque and another list for the back.
@@ -19,7 +19,7 @@
;;; (or F B) gives us a test whether the dequeue is not empty.
;;;
;;; (+ (length F) (length B)) gives us the length.
-;;;
+;;;
;;;
(eval-when (:compile-toplevel :load-toplevel :execute)