Browse Source

[2526] Minor: corrected typo.

Marcin Siodelski 12 years ago
parent
commit
da3bcafa32
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/dhcp/tests/libdhcp++_unittest.cc

+ 1 - 1
src/lib/dhcp/tests/libdhcp++_unittest.cc

@@ -317,7 +317,7 @@ TEST_F(LibDhcpTest, unpackOptions6) {
     expected_opts.push_back(0x6C6D); // equivalent to: 108, 109
     expected_opts.push_back(0x6E6F); // equivalent to 110, 111
     ASSERT_EQ(expected_opts.size(), opts.size());
-    // Validated if option has been un packed correctly.
+    // Validated if option has been unpacked correctly.
     EXPECT_TRUE(std::equal(expected_opts.begin(), expected_opts.end(),
                            opts.begin()));