Skip to content

Commit fbce7fd

Browse files
authored
Fix PRINT-UNPRINTABLE-OBJECT
There is no Common Lisp operator named PRINT-UNPRINTABLE-OBJECT. Given the context, it is certain that PRINT-UNREADABLE-OBJECT (www.lispworks.com/documentation/lw51/CLHS/Body/m_pr_unr.htm) was meant instead.
1 parent 8638b26 commit fbce7fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lispguide.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2087,7 +2087,7 @@ Robert Brown
20872087
</p>
20882088
<CODE_SNIPPET>
20892089
(defmethod print-object ((p person) stream)
2090-
(print-unprintable-object (p stream :type t :identity t)
2090+
(print-unreadable-object (p stream :type t :identity t)
20912091
(with-slots (first-name last-name) p
20922092
(safe-format stream "~a ~a" first-name last-name))))
20932093
</CODE_SNIPPET>

0 commit comments

Comments
 (0)