how to submit error in documentation

2021-11-22 Thread Damien Mattei
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))

Re: how to submit error in documentation

2021-11-22 Thread Arun Isaac
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

Re: how to submit error in documentation

2021-11-22 Thread lloda
Hi, I just fixed this in git, thanks for the report. But yeah, if you have more, like Arun says, ideally send it to bug-guile. That way if no one gets to it immediately at least it will be tracked. Regards Daniel > On 22 Nov 2021, at 11:47, Arun Isaac wrote: > > > Hi Damien, > >

Re: how to submit error in documentation

2021-11-22 Thread Damien Mattei
ok thanks, i will try to remember that if a next time regards, damien On Mon, Nov 22, 2021 at 7:31 PM lloda wrote: > > Hi, > > I just fixed this in git, thanks for the report. > > But yeah, if you have more, like Arun says, ideally send it to bug-guile. > That way if no one gets to it immediatel