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>
This commit is contained in:
Vagrant Cascadian 2019-11-11 19:14:16 -08:00 committed by Ludovic Courtès
parent 2ce08a5d79
commit 3a4d5ddd32
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 2 additions and 2 deletions

View File

@ -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";
}
};