From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:41704) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iUMdz-0004XA-BP for guix-patches@gnu.org; Mon, 11 Nov 2019 22:15:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iUMdy-0005S9-8D for guix-patches@gnu.org; Mon, 11 Nov 2019 22:15:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:47403) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iUMdy-0005Ry-5a for guix-patches@gnu.org; Mon, 11 Nov 2019 22:15:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iUMdx-00016Z-W8 for guix-patches@gnu.org; Mon, 11 Nov 2019 22:15:02 -0500 Subject: [bug#38174] [PATCH] nix: exceptions: Fix typo "referred". Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:41616) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iUMdO-0004TK-H6 for guix-patches@gnu.org; Mon, 11 Nov 2019 22:14:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iUMdN-0005KO-HB for guix-patches@gnu.org; Mon, 11 Nov 2019 22:14:26 -0500 Received: from cascadia.aikidev.net ([173.255.214.101]:43768) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iUMdN-0005JM-Bk for guix-patches@gnu.org; Mon, 11 Nov 2019 22:14:25 -0500 Received: from localhost (unknown [IPv6:2600:3c01:e000:21:21:21:0:100b]) (Authenticated sender: vagrant@cascadia.debian.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id A18551AEFD for ; Mon, 11 Nov 2019 19:14:21 -0800 (PST) From: Vagrant Cascadian Date: Mon, 11 Nov 2019 19:14:16 -0800 Message-ID: <871rud7pmf.fsf@yucca> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 38174@debbugs.gnu.org --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable * nix/boost/format/exceptions.hpp (too_few_args): Fix typo. (too_many_args): Fix typo. =2D-- nix/boost/format/exceptions.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/boost/format/exceptions.hpp b/nix/boost/format/exceptions.= hpp index 79e452449e..80da6d5718 100644 =2D-- a/nix/boost/format/exceptions.hpp +++ b/nix/boost/format/exceptions.hpp @@ -59,7 +59,7 @@ public: virtual const char *what() const throw() { return "boost::too_few_args: " =2D "format-string refered to more arguments than were passed"; + "format-string referred to more arguments than were passed"; } }; =20 @@ -70,7 +70,7 @@ public: virtual const char *what() const throw() { return "boost::too_many_args: " =2D "format-string refered to less arguments than were passed"; + "format-string referred to less arguments than were passed"; } }; =20 =2D-=20 2.20.1 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEARYKAB0WIQRlgHNhO/zFx+LkXUXcUY/If5cWqgUCXcojiAAKCRDcUY/If5cW qoPQAQDh8JC7WktEOdcF3muPWlJaBVYj+Qw+GRayZJ3puGJKxAEAzICa46Usi6Qb gKROOroWzFqaCJ48kbT+dS2FpN+p9As= =fCsE -----END PGP SIGNATURE----- --=-=-=--