Browse Source

spelling: evaluation

Josh Soref 7 years ago
parent
commit
27f3161b25
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/lib/eval/evaluate.cc
  2. 1 1
      src/lib/eval/tests/token_unittest.cc

+ 1 - 1
src/lib/eval/evaluate.cc

@@ -30,7 +30,7 @@ evaluateString(const Expression& expr, Pkt& pkt) {
     }
     if (values.size() != 1) {
         isc_throw(EvalBadStack, "Incorrect stack order. Expected exactly "
-                  "1 value at the end of evaluatuion, got " << values.size());
+                  "1 value at the end of evaluation, got " << values.size());
     }
     return (values.top());
 }

+ 1 - 1
src/lib/eval/tests/token_unittest.cc

@@ -120,7 +120,7 @@ public:
         pkt6_->addRelayInfo(relay1);
     }
 
-    /// @brief Verify that the relay6 option evaluatiosn work properly
+    /// @brief Verify that the relay6 option evaluations work properly
     ///
     /// Given the nesting level and option code extract the option
     /// and compare it to the expected string.