guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

11/16: daemon: boost::format: Fix typo "referred".


From: guix-commits
Subject: 11/16: daemon: boost::format: Fix typo "referred".
Date: Mon, 25 Nov 2019 18:17:09 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 3a4d5ddd322c7daf0a8c83ca2c87c3fc38b19f0b
Author: Vagrant Cascadian <address@hidden>
Date:   Mon Nov 11 19:14:16 2019 -0800

    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 <address@hidden>
---
 nix/boost/format/exceptions.hpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/nix/boost/format/exceptions.hpp b/nix/boost/format/exceptions.hpp
index 79e4524..80da6d5 100644
--- a/nix/boost/format/exceptions.hpp
+++ b/nix/boost/format/exceptions.hpp
@@ -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";
   }
 };
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]