guile-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

how to submit error in documentation


From: Damien Mattei
Subject: how to submit error in documentation
Date: Mon, 22 Nov 2021 10:16:18 +0100

hello,

what it is the good place or way to submit or correct errors and typos in guile documentation?

for example here:
https://www.gnu.org/software/guile/manual/html_node/while-do.html

the result of :
(do ((i 1 (1+ i))
     (p 3 (* 3 p)))
    ((> i 4)
     p)
  (format #t "3**~s is ~s\n" i p))

is not 789 
but 243:

scheme@(guile-user)> (do ((i 1 (1+ i))
     (p 3 (* 3 p)))
    ((> i 4)
     p)
  (format #t "3**~s is ~s\n" i p))
3**1 is 3
3**2 is 9
3**3 is 27
3**4 is 81
243

this is not important but have to be corrected
Damien

reply via email to

[Prev in Thread] Current Thread [Next in Thread]