From: Shawn Routhier Date: Mon, 22 Aug 2016 22:27:36 +0000 (-0700) Subject: [trac4483] Fix a couple more typos X-Git-Tag: trac4631_base~15^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2fe714e34b24e413de4a11a6ce6e66819f791e1a;p=thirdparty%2Fkea.git [trac4483] Fix a couple more typos --- diff --git a/src/lib/eval/tests/context_unittest.cc b/src/lib/eval/tests/context_unittest.cc index 851b320ad6..6272c9d88f 100644 --- a/src/lib/eval/tests/context_unittest.cc +++ b/src/lib/eval/tests/context_unittest.cc @@ -1212,9 +1212,9 @@ TEST_F(EvalContextTest, scanParseErrors) { checkError("0abc", ":1.2: Invalid character: a"); - // This one is a little bid odd. This is truncated address, so it's not - // recognized as address. Instead, first token (10) is recognized as - // integer. The only thing we can do with integers right now is test + // This one is a little bid odd. This is a truncated address, so it's not + // recognized as an address. Instead, the first token (10) is recognized as + // an integer. The only thing we can do with integers right now is test // for equality, so the only possible next token is ==. There's a dot // instead, so an error is reported. checkError("10.0.1", ":1.3: syntax error, unexpected ., expecting ==");