From unknown Sun Jun 22 11:46:05 2025 X-Loop: help-debbugs@gnu.org Subject: bug#34008: [PATCH] doc: Fix minor typo in the HTTP headers documentation. Resent-From: Arun Isaac Original-Sender: "Debbugs-submit" Resent-CC: bug-guile@gnu.org Resent-Date: Mon, 07 Jan 2019 12:14:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 34008 X-GNU-PR-Package: guile X-GNU-PR-Keywords: patch To: 34008@debbugs.gnu.org Cc: Arun Isaac X-Debbugs-Original-To: bug-guile@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.154686320824510 (code B ref -1); Mon, 07 Jan 2019 12:14:01 +0000 Received: (at submit) by debbugs.gnu.org; 7 Jan 2019 12:13:28 +0000 Received: from localhost ([127.0.0.1]:47707 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ggTma-0006NG-HB for submit@debbugs.gnu.org; Mon, 07 Jan 2019 07:13:28 -0500 Received: from eggs.gnu.org ([209.51.188.92]:34377) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ggTmX-0006My-HP for submit@debbugs.gnu.org; Mon, 07 Jan 2019 07:13:27 -0500 Received: from lists.gnu.org ([209.51.188.17]:54047) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ggTmR-00059S-6T for submit@debbugs.gnu.org; Mon, 07 Jan 2019 07:13:20 -0500 Received: from eggs.gnu.org ([209.51.188.92]:44553) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ggTmQ-0008VD-96 for bug-guile@gnu.org; Mon, 07 Jan 2019 07:13:18 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ggTmL-00057H-R3 for bug-guile@gnu.org; Mon, 07 Jan 2019 07:13:16 -0500 Received: from vultr.systemreboot.net ([45.77.148.100]:34664) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ggTmI-00052p-1V for bug-guile@gnu.org; Mon, 07 Jan 2019 07:13:11 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=systemreboot.net; s=default; h=Content-Transfer-Encoding:MIME-Version: Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=28Gm0bpaPAyZhFGKfs1xDS8S1M3Qz2ekcSd2IrQsonI=; b=gTrYby1f6Tn8yl7IjRkwdsCWmP 8hk6CZAwYDQhoc0rWNVfs/mYmx7KT2gnE493wii0Bs2SgRPQI6g2zoSyp6w1DSlNWs5et4RkJh4vs 6y/ozc8TGLN0XhfBsM2AtcVrlaTyTnnnjuvT3pkPBngs5LXBc2vSCJiFV6I+F1eAqR3w=; Received: from [14.139.128.15] (helo=localhost.localdomain) by systemreboot.net with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.91) (envelope-from ) id 1ggTm8-00049j-6O; Mon, 07 Jan 2019 17:43:01 +0530 From: Arun Isaac Date: Mon, 7 Jan 2019 17:42:31 +0530 Message-Id: <20190107121232.13444-1-arunisaac@systemreboot.net> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 45.77.148.100 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Spam-Score: 0.9 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.1 (/) * doc/ref/web.texi (HTTP Headers): Fix minor typo. --- doc/ref/web.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/ref/web.texi b/doc/ref/web.texi index c8fc488b7..c11ed32fa 100644 --- a/doc/ref/web.texi +++ b/doc/ref/web.texi @@ -791,7 +791,7 @@ The MIME type of a resource, as a symbol, along with any parameters. (parse-header 'content-type "text/plain;charset=utf-8") @result{} (text/plain (charset . "utf-8")) @end example -Note that the @code{charset} parameter is something is a misnomer, and +Note that the @code{charset} parameter is something of a misnomer, and the HTTP specification admits this. It specifies the @emph{encoding} of the characters, not the character set. @end deftypevr -- 2.19.2 From unknown Sun Jun 22 11:46:05 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Arun Isaac Subject: bug#34008: closed (Re: bug#34008: [PATCH] doc: Fix minor typo in the HTTP headers documentation.) Message-ID: References: <87wohb9l47.fsf@gnu.org> <20190107121232.13444-1-arunisaac@systemreboot.net> X-Gnu-PR-Message: they-closed 34008 X-Gnu-PR-Package: guile X-Gnu-PR-Keywords: patch Reply-To: 34008@debbugs.gnu.org Date: Mon, 24 Jun 2019 13:20:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1561382402-28329-1" This is a multi-part message in MIME format... ------------=_1561382402-28329-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #34008: [PATCH] doc: Fix minor typo in the HTTP headers documentation. which was filed against the guile package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 34008@debbugs.gnu.org. --=20 34008: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D34008 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1561382402-28329-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 34008-done) by debbugs.gnu.org; 24 Jun 2019 13:19:36 +0000 Received: from localhost ([127.0.0.1]:55797 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hfOsf-0007M9-NR for submit@debbugs.gnu.org; Mon, 24 Jun 2019 09:19:36 -0400 Received: from eggs.gnu.org ([209.51.188.92]:57483) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hfOsd-0007Lw-Iv for 34008-done@debbugs.gnu.org; Mon, 24 Jun 2019 09:19:32 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:37308) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hfOsW-0001Bl-3v; Mon, 24 Jun 2019 09:19:25 -0400 Received: from [2001:660:6102:320:e120:2c8f:8909:cdfe] (port=43668 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1hfOsT-0002kf-SL; Mon, 24 Jun 2019 09:19:23 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Arun Isaac Subject: Re: bug#34008: [PATCH] doc: Fix minor typo in the HTTP headers documentation. References: <20190107121232.13444-1-arunisaac@systemreboot.net> Date: Mon, 24 Jun 2019 15:19:20 +0200 In-Reply-To: <20190107121232.13444-1-arunisaac@systemreboot.net> (Arun Isaac's message of "Mon, 7 Jan 2019 17:42:31 +0530") Message-ID: <87wohb9l47.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 34008-done Cc: 34008-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hi, Arun Isaac skribis: > * doc/ref/web.texi (HTTP Headers): Fix minor typo. Applied, thanks! Ludo=E2=80=99. ------------=_1561382402-28329-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 7 Jan 2019 12:13:28 +0000 Received: from localhost ([127.0.0.1]:47707 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ggTma-0006NG-HB for submit@debbugs.gnu.org; Mon, 07 Jan 2019 07:13:28 -0500 Received: from eggs.gnu.org ([209.51.188.92]:34377) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ggTmX-0006My-HP for submit@debbugs.gnu.org; Mon, 07 Jan 2019 07:13:27 -0500 Received: from lists.gnu.org ([209.51.188.17]:54047) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ggTmR-00059S-6T for submit@debbugs.gnu.org; Mon, 07 Jan 2019 07:13:20 -0500 Received: from eggs.gnu.org ([209.51.188.92]:44553) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ggTmQ-0008VD-96 for bug-guile@gnu.org; Mon, 07 Jan 2019 07:13:18 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ggTmL-00057H-R3 for bug-guile@gnu.org; Mon, 07 Jan 2019 07:13:16 -0500 Received: from vultr.systemreboot.net ([45.77.148.100]:34664) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ggTmI-00052p-1V for bug-guile@gnu.org; Mon, 07 Jan 2019 07:13:11 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=systemreboot.net; s=default; h=Content-Transfer-Encoding:MIME-Version: Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=28Gm0bpaPAyZhFGKfs1xDS8S1M3Qz2ekcSd2IrQsonI=; b=gTrYby1f6Tn8yl7IjRkwdsCWmP 8hk6CZAwYDQhoc0rWNVfs/mYmx7KT2gnE493wii0Bs2SgRPQI6g2zoSyp6w1DSlNWs5et4RkJh4vs 6y/ozc8TGLN0XhfBsM2AtcVrlaTyTnnnjuvT3pkPBngs5LXBc2vSCJiFV6I+F1eAqR3w=; Received: from [14.139.128.15] (helo=localhost.localdomain) by systemreboot.net with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.91) (envelope-from ) id 1ggTm8-00049j-6O; Mon, 07 Jan 2019 17:43:01 +0530 From: Arun Isaac To: bug-guile@gnu.org Subject: [PATCH] doc: Fix minor typo in the HTTP headers documentation. Date: Mon, 7 Jan 2019 17:42:31 +0530 Message-Id: <20190107121232.13444-1-arunisaac@systemreboot.net> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 45.77.148.100 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Spam-Score: 0.9 (/) X-Debbugs-Envelope-To: submit Cc: Arun Isaac X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.1 (/) * doc/ref/web.texi (HTTP Headers): Fix minor typo. --- doc/ref/web.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/ref/web.texi b/doc/ref/web.texi index c8fc488b7..c11ed32fa 100644 --- a/doc/ref/web.texi +++ b/doc/ref/web.texi @@ -791,7 +791,7 @@ The MIME type of a resource, as a symbol, along with any parameters. (parse-header 'content-type "text/plain;charset=utf-8") @result{} (text/plain (charset . "utf-8")) @end example -Note that the @code{charset} parameter is something is a misnomer, and +Note that the @code{charset} parameter is something of a misnomer, and the HTTP specification admits this. It specifies the @emph{encoding} of the characters, not the character set. @end deftypevr -- 2.19.2 ------------=_1561382402-28329-1--