Skip to content

Commit

Permalink
Typo fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
dickensc committed Feb 15, 2024
1 parent d4f9e51 commit 9aaa05a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1056,7 +1056,7 @@ public EvalInfo deserialize(JsonParser jsonParser, DeserializationContext deseri

private EvalInfo parseEvalDef(ObjectNode root) {
if (!root.hasNonNull(KEY_EVALUATOR)) {
throw new IllegalArgumentException("Evalautor object missing the '" + KEY_EVALUATOR + "' key.");
throw new IllegalArgumentException("Evaluator object missing the '" + KEY_EVALUATOR + "' key.");
}

String evaluator = root.get(KEY_EVALUATOR).textValue();
Expand Down

0 comments on commit 9aaa05a

Please sign in to comment.