]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[5287] Minor grammar corrections.
authorTomek Mrugalski <tomasz@isc.org>
Tue, 4 Jul 2017 18:19:57 +0000 (20:19 +0200)
committerTomek Mrugalski <tomasz@isc.org>
Tue, 4 Jul 2017 18:19:57 +0000 (20:19 +0200)
doc/guide/classify.xml
src/lib/eval/tests/token_unittest.cc

index 5f7420fb62dae96e1d78771781919595d2f66992..4f15a5277cc1108253bd30d01f4af2265aefd608 100644 (file)
       from which to extract the information, with a value of 0 indicating
       the relay closest to the DHCPv6 server. Negative values allow to
       specify relays counted from the DHCPv6 client, -1 indicating the
-      relay closest. In general negative "nest" level is the same than
-      the number of relays + "nest" level.
+      relay closest to the client. In general negative "nest" level is
+      the same as the number of relays + "nest" level.
       If the requested encapsulation doesn't exist an empty string ""
       is returned.  This expression is allowed in DHCPv6 only.
       </para></listitem>
index 0482673bc12bc833d4e19f67706835a0185ef33a..736449645d47f625ccc6b5a63cb7997369534e0f 100644 (file)
@@ -1135,12 +1135,12 @@ TEST_F(TokenTest, relay6Option) {
     // Level 2, no encapsulation so no options
     verifyRelay6Option(2, 100, TokenOption::TEXTUAL, "");
 
-    // Level -1, the same than level 1
+    // Level -1, the same as level 1
     verifyRelay6Option(-1, 100, TokenOption::TEXTUAL, "hundred.one");
     verifyRelay6Option(-1, 101, TokenOption::TEXTUAL, "");
     verifyRelay6Option(-1, 102, TokenOption::TEXTUAL, "hundredtwo.one");
 
-    // Level -2, the same than level 0
+    // Level -2, the same as level 0
     verifyRelay6Option(-2, 100, TokenOption::TEXTUAL, "hundred.zero");
     verifyRelay6Option(-2, 100, TokenOption::EXISTS, "true");
     verifyRelay6Option(-2, 101, TokenOption::TEXTUAL, "hundredone.zero");
@@ -1492,11 +1492,11 @@ TEST_F(TokenTest, relay6Field) {
     // Level 2 has no encapsulation so the address should be zero length
     verifyRelay6Eval(2, TokenRelay6Field::LINKADDR, 0, zeroaddr);
 
-    // Level -1 is the same than level 1
+    // Level -1 is the same as level 1
     verifyRelay6Eval(-1, TokenRelay6Field::LINKADDR, 16, linkaddr);
     verifyRelay6Eval(-1, TokenRelay6Field::PEERADDR, 16, peeraddr);
 
-    // Level -2 is the same than level 0
+    // Level -2 is the same as level 0
     verifyRelay6Eval(-2, TokenRelay6Field::LINKADDR, 16, zeroaddr);
     verifyRelay6Eval(-2, TokenRelay6Field::PEERADDR, 16, zeroaddr);