From: Tomek Mrugalski Date: Tue, 4 Jul 2017 18:19:57 +0000 (+0200) Subject: [5287] Minor grammar corrections. X-Git-Tag: trac5227_base~23^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f11756e5b6e9c5a79d01f498f7039a1ad7046509;p=thirdparty%2Fkea.git [5287] Minor grammar corrections. --- diff --git a/doc/guide/classify.xml b/doc/guide/classify.xml index 5f7420fb62..4f15a5277c 100644 --- a/doc/guide/classify.xml +++ b/doc/guide/classify.xml @@ -486,8 +486,8 @@ 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. diff --git a/src/lib/eval/tests/token_unittest.cc b/src/lib/eval/tests/token_unittest.cc index 0482673bc1..736449645d 100644 --- a/src/lib/eval/tests/token_unittest.cc +++ b/src/lib/eval/tests/token_unittest.cc @@ -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);