]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[master] spelling
authorFrancis Dupont <fdupont@isc.org>
Mon, 2 Mar 2015 16:52:23 +0000 (17:52 +0100)
committerFrancis Dupont <fdupont@isc.org>
Mon, 2 Mar 2015 16:52:23 +0000 (17:52 +0100)
src/lib/util/signal_set.h

index 7380f7db95347944c443894ef765ff7984369182..816a1a638fa53a9096ff395885b24d9cd64c5083 100644 (file)
@@ -37,12 +37,12 @@ public:
 
 /// @brief Defines a set of integer signal identifiers: SIGHUP, SIGTERM...
 typedef std::set<int> SigIntSet;
-/// @gbrief Pointer to a set of signal identifiers
+/// @brief Pointer to a set of signal identifiers
 typedef boost::shared_ptr<SigIntSet> SigIntSetPtr;
 
 /// @brief Defines a list of integer signal identifiers: SIGHUP, SIGTERM...
 typedef std::list<int> SigIntList;
-/// @gbrief Pointer to a list of signal identifiers
+/// @brief Pointer to a list of signal identifiers
 typedef boost::shared_ptr<SigIntList> SigIntListPtr;
 
 
@@ -171,7 +171,7 @@ public:
     /// @param handler the signal handler to register
     static void setOnReceiptHandler(BoolSignalHandler handler);
 
-    /// @brief Unregeisters the onreceipt signal handler
+    /// @brief Unregisters the onreceipt signal handler
     static void clearOnReceiptHandler();
 
     /// @brief Invokes the onreceipt handler if it exists
@@ -181,7 +181,7 @@ public:
     /// a registered signal.
     ///
     /// Prior to invoking the handler, it sets signal action for the given
-    /// signal to SIG_IGN which prevents any repeat signal occurences from
+    /// signal to SIG_IGN which prevents any repeat signal occurrences from
     /// queuing while the handler is executing.  Upon completion of the handler,
     /// the signal action is restored which reenables receipt and handling of
     /// the signal.