unofficial mirror of guile-devel@gnu.org 
 help / color / mirror / Atom feed
* how to submit error in documentation
@ 2021-11-22  9:16 Damien Mattei
  2021-11-22 10:47 ` Arun Isaac
  0 siblings, 1 reply; 4+ messages in thread
From: Damien Mattei @ 2021-11-22  9:16 UTC (permalink / raw)
  To: guile-devel

[-- Attachment #1: Type: text/plain, Size: 540 bytes --]

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

[-- Attachment #2: Type: text/html, Size: 1389 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: how to submit error in documentation
  2021-11-22  9:16 how to submit error in documentation Damien Mattei
@ 2021-11-22 10:47 ` Arun Isaac
  2021-11-22 18:31   ` lloda
  0 siblings, 1 reply; 4+ messages in thread
From: Arun Isaac @ 2021-11-22 10:47 UTC (permalink / raw)
  To: Damien Mattei; +Cc: guile-devel

[-- Attachment #1: Type: text/plain, Size: 462 bytes --]


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

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 524 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: how to submit error in documentation
  2021-11-22 10:47 ` Arun Isaac
@ 2021-11-22 18:31   ` lloda
  2021-11-22 18:40     ` Damien Mattei
  0 siblings, 1 reply; 4+ messages in thread
From: lloda @ 2021-11-22 18:31 UTC (permalink / raw)
  To: Damien Mattei; +Cc: guile-devel


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 <arunisaac@systemreboot.net> wrote:
> 
> 
> 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




^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: how to submit error in documentation
  2021-11-22 18:31   ` lloda
@ 2021-11-22 18:40     ` Damien Mattei
  0 siblings, 0 replies; 4+ messages in thread
From: Damien Mattei @ 2021-11-22 18:40 UTC (permalink / raw)
  To: lloda; +Cc: guile-devel

[-- Attachment #1: Type: text/plain, Size: 1015 bytes --]

ok thanks,
i will try to remember that if a next time
regards,
damien

On Mon, Nov 22, 2021 at 7:31 PM lloda <lloda@sarc.name> 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 immediately at least it will be tracked.
>
> Regards
>
>         Daniel
>
> > On 22 Nov 2021, at 11:47, Arun Isaac <arunisaac@systemreboot.net> wrote:
> >
> >
> > 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
>
>

[-- Attachment #2: Type: text/html, Size: 2068 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-11-22 18:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-22  9:16 how to submit error in documentation Damien Mattei
2021-11-22 10:47 ` Arun Isaac
2021-11-22 18:31   ` lloda
2021-11-22 18:40     ` Damien Mattei

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).