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>master
parent
2ce08a5d79
commit
3a4d5ddd32
|
@ -59,7 +59,7 @@ public:
|
||||||
virtual const char *what() const throw()
|
virtual const char *what() const throw()
|
||||||
{
|
{
|
||||||
return "boost::too_few_args: "
|
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()
|
virtual const char *what() const throw()
|
||||||
{
|
{
|
||||||
return "boost::too_many_args: "
|
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