daemon: boost::format: Fix typo "referred".
authorVagrant Cascadian <vagrant@debian.org>
Tue, 12 Nov 2019 03:14:16 +0000 (19:14 -0800)
committerLudovic Courtès <ludo@gnu.org>
Mon, 25 Nov 2019 23:16:36 +0000 (00:16 +0100)
* nix/boost/format/exceptions.hpp (too_few_args): Fix typo.
  (too_many_args): Fix typo.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
nix/boost/format/exceptions.hpp

index 79e4524..80da6d5 100644 (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";
   }
 };