diff mbox series

[bug#38174] nix: exceptions: Fix typo "referred".

Message ID 871rud7pmf.fsf@yucca
State Accepted
Headers show
Series [bug#38174] nix: exceptions: Fix typo "referred". | expand

Commit Message

Vagrant Cascadian Nov. 12, 2019, 3:14 a.m. UTC
* nix/boost/format/exceptions.hpp (too_few_args): Fix typo.
  (too_many_args): Fix typo.
---
 nix/boost/format/exceptions.hpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Ludovic Courtès Nov. 13, 2019, 10:18 p.m. UTC | #1
Hi Vagrant,

Vagrant Cascadian <vagrant@debian.org> skribis:

> * nix/boost/format/exceptions.hpp (too_few_args): Fix typo.
>   (too_many_args): Fix typo.

LGTM!

But note that this is actually a bundled subset of Boost (well, a tiny
subset).

Thanks,
Ludo’.
Vagrant Cascadian Nov. 13, 2019, 10:34 p.m. UTC | #2
On 2019-11-13, Ludovic Courtès wrote:
> Vagrant Cascadian <vagrant@debian.org> skribis:
>
>> * nix/boost/format/exceptions.hpp (too_few_args): Fix typo.
>>   (too_many_args): Fix typo.
>
> LGTM!
>
> But note that this is actually a bundled subset of Boost (well, a tiny
> subset).

Not sure where it should get pushed to; master, core-updates, staging?

I'd rather leave it to more proficient hands, at any rate. :)


live well,
  vagrant
Ludovic Courtès Nov. 14, 2019, 9:11 p.m. UTC | #3
Vagrant Cascadian <vagrant@debian.org> skribis:

> On 2019-11-13, Ludovic Courtès wrote:
>> Vagrant Cascadian <vagrant@debian.org> skribis:
>>
>>> * nix/boost/format/exceptions.hpp (too_few_args): Fix typo.
>>>   (too_many_args): Fix typo.
>>
>> LGTM!
>>
>> But note that this is actually a bundled subset of Boost (well, a tiny
>> subset).
>
> Not sure where it should get pushed to; master, core-updates, staging?

‘master’ is perfectly fine for such a change.

Thanks,
Ludo’.
Ludovic Courtès Nov. 25, 2019, 10:40 p.m. UTC | #4
Hi!

Vagrant Cascadian <vagrant@debian.org> skribis:

> * nix/boost/format/exceptions.hpp (too_few_args): Fix typo.
>   (too_many_args): Fix typo.

Applied now, thanks!

Ludo’.
diff mbox series

Patch

diff --git a/nix/boost/format/exceptions.hpp b/nix/boost/format/exceptions.hpp
index 79e452449e..80da6d5718 100644
--- 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: "
-      "format-string refered to more arguments than were passed";
+      "format-string referred to more arguments than were passed";
   }
 };
 
@@ -70,7 +70,7 @@  public:
   virtual const char *what() const throw()
   {
     return "boost::too_many_args: "
-      "format-string refered to less arguments than were passed";
+      "format-string referred to less arguments than were passed";
   }
 };