From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: lloda Newsgroups: gmane.lisp.guile.devel Subject: Re: how to submit error in documentation Date: Mon, 22 Nov 2021 19:31:51 +0100 Message-ID: <304DCEC3-96C9-43DB-883B-B97ED174EC5F@sarc.name> References: <877dd0bh6k.fsf@systemreboot.net> Mime-Version: 1.0 (Mac OS X Mail 13.4 \(3608.120.23.2.7\)) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="33536"; mail-complaints-to="usenet@ciao.gmane.io" Cc: guile-devel To: Damien Mattei Original-X-From: guile-devel-bounces+guile-devel=m.gmane-mx.org@gnu.org Mon Nov 22 19:32:19 2021 Return-path: Envelope-to: guile-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mpE70-0008Ys-EP for guile-devel@m.gmane-mx.org; Mon, 22 Nov 2021 19:32:18 +0100 Original-Received: from localhost ([::1]:58862 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mpE6y-0001il-L0 for guile-devel@m.gmane-mx.org; Mon, 22 Nov 2021 13:32:16 -0500 Original-Received: from eggs.gnu.org ([209.51.188.92]:52772) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mpE6n-0001hz-8d for guile-devel@gnu.org; Mon, 22 Nov 2021 13:32:05 -0500 Original-Received: from mta-05-3.privateemail.com ([68.65.122.15]:44206) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mpE6k-0007rt-Oa for guile-devel@gnu.org; Mon, 22 Nov 2021 13:32:04 -0500 Original-Received: from mta-05.privateemail.com (localhost [127.0.0.1]) by mta-05.privateemail.com (Postfix) with ESMTP id B09B618000A0; Mon, 22 Nov 2021 13:31:54 -0500 (EST) Original-Received: from [192.168.1.105] (unknown [10.20.151.204]) by mta-05.privateemail.com (Postfix) with ESMTPA id D8B88180009E; Mon, 22 Nov 2021 13:31:53 -0500 (EST) In-Reply-To: <877dd0bh6k.fsf@systemreboot.net> X-Mailer: Apple Mail (2.3608.120.23.2.7) X-Virus-Scanned: ClamAV using ClamSMTP Received-SPF: pass client-ip=68.65.122.15; envelope-from=lloda@sarc.name; helo=MTA-05-3.privateemail.com X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane-mx.org@gnu.org Original-Sender: "guile-devel" Xref: news.gmane.io gmane.lisp.guile.devel:20979 Archived-At: 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: >=20 >=20 > Hi Damien, >=20 >> for example here: >> https://www.gnu.org/software/guile/manual/html_node/while-do.html >>=20 >> the result of : >>=20 >> (do ((i 1 (1+ i)) >> (p 3 (* 3 p))) >> ((> i 4) >> p) >> (format #t "3**~s is ~s\n" i p)) >>=20 >> is not 789 >>=20 >> but 243: >=20 > Good catch! >=20 >> what it is the good place or way to submit or correct errors and = typos in >> guile documentation? >=20 > You can send a patch (created using `git format-patch') to > bug-guile@gnu.org. >=20 > Regards, > Arun