diff options
author | Vagrant Cascadian <vagrant@debian.org> | 2019-11-11 19:14:16 -0800 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-11-26 00:16:36 +0100 |
commit | 3a4d5ddd322c7daf0a8c83ca2c87c3fc38b19f0b (patch) | |
tree | 489c6ed809d2e2225b0c96915f79e2580a76af9d /nix/boost | |
parent | 2ce08a5d79f6eb1d2d3839aca859559b9829ae36 (diff) | |
download | patches-3a4d5ddd322c7daf0a8c83ca2c87c3fc38b19f0b.tar patches-3a4d5ddd322c7daf0a8c83ca2c87c3fc38b19f0b.tar.gz |
daemon: boost::format: Fix typo "referred".
* nix/boost/format/exceptions.hpp (too_few_args): Fix typo.
(too_many_args): Fix typo.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'nix/boost')
-rw-r--r-- | nix/boost/format/exceptions.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
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"; } }; |