]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#1292] minor changes
authorRazvan Becheriu <razvan@isc.org>
Wed, 5 Aug 2020 07:17:46 +0000 (10:17 +0300)
committerFrancis Dupont <fdupont@isc.org>
Wed, 5 Aug 2020 09:59:59 +0000 (11:59 +0200)
src/lib/testutils/multi_threading_utils.h

index e070f543a6491f050c0385fcfcab5f78b6346376..8754208198879a2cb51e9c03424b5d5472519ffe 100644 (file)
@@ -14,7 +14,7 @@ namespace test {
 
 /// @brief A RAII class which disables the multi threading on exit of scope.
 ///
-/// Usually the multi threading is disabled by the fixture destructor ot
+/// Usually the multi threading is disabled by the fixture destructor or
 /// TearDown but of course this works only when a fixture class is used.
 class MultiThreadingTest {
 public:
@@ -25,7 +25,7 @@ public:
     MultiThreadingTest(bool mode = true) {
         isc::util::MultiThreadingMgr::instance().setMode(mode);
     }
+
     /// @brief Destructor (disable multi threading).
     ~MultiThreadingTest() {
         isc::util::MultiThreadingMgr::instance().setMode(false);