Browse Source

spelling: canceling

Josh Soref 7 years ago
parent
commit
7117a1ab2a
1 changed files with 2 additions and 2 deletions
  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"));