We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abc48ad commit 5fad2f3Copy full SHA for 5fad2f3
concepts/lists/about.md
@@ -6,7 +6,7 @@ Each `car` is an element of the list and every `cdr` is a either the next cons c
6
7
A list which terminates with the empty list is called a "proper list".
8
9
-A list which terminates with an atom that is not th empty list is called a "dotted list" (based upon how it is printed: `(cons 'a 'b) ;=> (a . b)`).
+A list which terminates with an atom that is not the empty list is called a "dotted list" (based upon how it is printed: `(cons 'a 'b) ;=> (a . b)`).
10
11
A list can also be circular if some cons cell in the list `cdr` of a later cons cell.
12
For example: `(let ((x (list 1))) (setf (cdr x) x) (write x :stream t :circle t) :done)`.
0 commit comments