Parcourir la source

spelling: canceling

Josh Soref il y a 8 ans
Parent
commit
7117a1ab2a
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      src/lib/dhcpsrv/tests/timer_mgr_unittest.cc

+ 2 - 2
src/lib/dhcpsrv/tests/timer_mgr_unittest.cc

@@ -269,10 +269,10 @@ TEST_F(TimerMgrTest, cancel) {
 
     doWait(500);
 
-    // Cancelling non-existing timer should fail.
+    // Canceling non-existing timer should fail.
     EXPECT_THROW(timer_mgr_->cancel("timer2"), BadValue);
 
-    // Cancelling the good one should pass, even when the worker
+    // Canceling the good one should pass, even when the worker
     // thread is running.
     ASSERT_NO_THROW(timer_mgr_->cancel("timer1"));