Small "problems" in the docs

Notices and updates
Locked
ale870
Posts: 297
Joined: Mon Nov 26, 2007 8:01 pm
Location: Italy

Small "problems" in the docs

Post by ale870 »

Hello,
I found two small errors in the docs.

1) This is trivial, but could be confusing for a new user. In the reference area for (setf) there is the example:

Code: Select all

(push 'b (setf (assoc 'b l) '(b 4))) 'b)
It is wrong, in fact "l" letter must be in upper case - see (assoc 'b l):

Code: Select all

(push 'b (setf (assoc 'b L) '(b 4))) 'b)
(either in html file or in PDF).

2) PDF file has a title "newLisp 9.1 Manual" but it is for "v.10.1 rev.2".
--

Locked