Hi Damien, > 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: Good catch! > what it is the good place or way to submit or correct errors and typos in > guile documentation? You can send a patch (created using `git format-patch') to bug-guile@gnu.org. Regards, Arun