[NFC][MLGO] Remove the word "inliner" in a generic error message.

This commit is contained in:
Mircea Trofin 2022-01-11 12:36:16 -08:00
parent 4c106cfdf7
commit a81b0c978f
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ ModelUnderTrainingRunner::ModelUnderTrainingRunner(
ModelPath, InputSpecs, [&](size_t I) { return OutputSpecs[I].Spec; },
OutputSpecs.size());
if (!Evaluator || !Evaluator->isValid()) {
Ctx.emitError("Failed to create inliner saved model evaluator");
Ctx.emitError("Failed to create saved model evaluator");
Evaluator.reset();
return;
}