mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-11 11:42:51 -08:00
Fix typos.
This commit is contained in:
parent
9d936beb41
commit
ddc91bdf9d
1 changed files with 4 additions and 4 deletions
|
|
@ -301,25 +301,25 @@ be a symbol in any package. ...
|
|||
|
||||
(my-assert
|
||||
(let ((a 1))
|
||||
(quote (setq a 3)))
|
||||
(quote (setq a 3))
|
||||
a)
|
||||
1)
|
||||
|
||||
(my-assert
|
||||
(let ((a 1))
|
||||
(quote (setq a 3)))
|
||||
(quote (setq a 3))
|
||||
'a)
|
||||
A)
|
||||
|
||||
(my-assert
|
||||
(let ((a 1))
|
||||
(quote (setq a 3)))
|
||||
(quote (setq a 3))
|
||||
''a)
|
||||
(QUOTE A) )
|
||||
|
||||
(my-assert
|
||||
(let ((a 1))
|
||||
(quote (setq a 3)))
|
||||
(quote (setq a 3))
|
||||
'''a)
|
||||
(QUOTE (QUOTE A)))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue