mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05: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:
parent
2ce08a5d79
commit
3a4d5ddd32
1 changed files with 2 additions and 2 deletions
|
@ -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";
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue