]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
spelling: class
authorJosh Soref <jsoref@users.noreply.github.com>
Sun, 23 Jul 2017 15:54:42 +0000 (11:54 -0400)
committerJosh Soref <jsoref@users.noreply.github.com>
Sun, 23 Jul 2017 15:54:42 +0000 (11:54 -0400)
src/bin/keactrl/kea.conf.pre
src/lib/dns/rrclass-placeholder.h
src/lib/dns/rrclass.h
src/lib/dns/tests/rrclass_unittest.cc
src/lib/http/tests/response_unittests.cc

index b1fb0af7d0e7f2d8b65fd6e52add96cd3e7bf619..cebffb18fbd63c74c6bdd2f26ec2f5d062e263ba 100644 (file)
         //      }
     ]
 
-    // Client-clesses can be defined here. See "client-classes" in Dhcp4 for
+    // Client-classes can be defined here. See "client-classes" in Dhcp4 for
     // an example.
 
     // Hook libraries can be defined here. See "hooks-libraries" example in
index fc201c6fa49cbda47c3c8bc2b1a1eb8de1dd99e0..d4fd0baab0b6be982509407e466551f1dbf0ac46 100644 (file)
@@ -111,7 +111,7 @@ public:
     /// As for the format of "CLASSnnnn", "nnnn" must represent a valid 16-bit
     /// unsigned integer, which may contain leading 0's as long as it consists
     /// of at most 5 characters (inclusive).
-    /// For example, "CLASS1" and "CLASSS001" are valid and represent the same
+    /// For example, "CLASS1" and "CLASS0001" are valid and represent the same
     /// class, but "CLASS65536" and "CLASS000001" are invalid.
     /// A "CLASSnnnn" representation is valid even if the corresponding class
     /// code is registered in the \c RRParamRegistry object.  For example, both
index 04676a874fba78fc68a8a04754e14cf782ca0981..1796b4388bfd1a1d72ceb2ebcee607d21016bc00 100644 (file)
@@ -118,7 +118,7 @@ public:
     /// As for the format of "CLASSnnnn", "nnnn" must represent a valid 16-bit
     /// unsigned integer, which may contain leading 0's as long as it consists
     /// of at most 5 characters (inclusive).
-    /// For example, "CLASS1" and "CLASSS001" are valid and represent the same
+    /// For example, "CLASS1" and "CLASS0001" are valid and represent the same
     /// class, but "CLASS65536" and "CLASS000001" are invalid.
     /// A "CLASSnnnn" representation is valid even if the corresponding class
     /// code is registered in the \c RRParamRegistry object.  For example, both
index 7261b72008448946fae5ab4ebd5a3835f9e67669..0bcfeeb0e2b9d3c2bd0d136dd65996eadbb18fd0 100644 (file)
@@ -41,7 +41,7 @@ const RRClass RRClassTest::rrclass_0x80(0x80);
 const RRClass RRClassTest::rrclass_0x800(0x800);
 const RRClass RRClassTest::rrclass_0x8000(0x8000);
 const RRClass RRClassTest::rrclass_max(0xffff);
-// This is wire-format data for the above sample RRClasss rendered in the
+// This is wire-format data for the above sample RRClass rendered in the
 // appearing order.
 const uint8_t RRClassTest::wiredata[] = { 0x00, 0x01, 0x00, 0x80, 0x08,
                                           0x00, 0x80, 0x00, 0xff, 0xff };
@@ -124,7 +124,7 @@ TEST_F(RRClassTest, toWireRenderer) {
                   renderer.getData(), renderer.getLength());
 }
 
-TEST_F(RRClassTest, wellKnownClasss) {
+TEST_F(RRClassTest, wellKnownClass) {
     EXPECT_EQ(1, RRClass::IN().getCode());
     EXPECT_EQ("IN", RRClass::IN().toText());
 }
index 90076ea72124e259f6a3880a7f29fb370b5d04d5..a1f98d4819ea0890ca6f1b24550ccb3141103de1 100644 (file)
@@ -67,7 +67,7 @@ TEST_F(HttpResponseTest, responseOK) {
 
     // Create a string holding expected response. Note that the Date
     // is a fixed value returned by the customized TestHttpResponse
-    // classs.
+    // class.
     std::ostringstream response_string;
     response_string <<
         "HTTP/1.0 200 OK\r\n"