/// This function decodes the DNS Update message stored in the buffer
/// specified by the function argument. If given a TSIG context, then
/// the function will first attempt to use that context to verify the
- /// message signature. If verification fails a TSIGVefiryError exception
+ /// message signature. If verification fails a TSIGVerifyError exception
/// will be thrown. The function then parses message header and extracts
/// the section counters: ZOCOUNT, PRCOUNT, UPCOUNT and ADCOUNT. Using
/// these counters, function identifies message sections, which follow
// Verify that the list of transactions has decreased by two.
EXPECT_EQ(canned_count_ - 2, update_mgr_->getTransactionCount());
- // Vefity that the transaction list is correct.
+ // Verify that the transaction list is correct.
EXPECT_TRUE(update_mgr_->hasTransaction(canned_ncrs_[0]->getDhcid()));
EXPECT_FALSE(update_mgr_->hasTransaction(canned_ncrs_[1]->getDhcid()));
EXPECT_TRUE(update_mgr_->hasTransaction(canned_ncrs_[2]->getDhcid()));
// should run up until the "IO" operation is initiated in DOING_UPDATE_ST.
ASSERT_NO_THROW(name_change->startTransaction());
- // Vefity that the model is running but waiting, and that the forward
+ // Verify that the model is running but waiting, and that the forward
// change has not been completed.
EXPECT_TRUE(name_change->isModelRunning());
EXPECT_TRUE(name_change->isModelWaiting());