mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-05-27 11:32:21 +02:00
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:
committed by
Ludovic Courtès
parent
2ce08a5d79
commit
3a4d5ddd32
@@ -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";
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user