Fix incorrectly spelled word.

PiperOrigin-RevId: 349300904
Change-Id: Id64a579953132962b9d0de086b1bb97e018a1706
This commit is contained in:
Jacques Pienaar 2020-12-28 10:21:39 -08:00 committed by TensorFlower Gardener
parent bd2a6f4862
commit 40dad0a283

View File

@ -38,8 +38,8 @@ bool GraphDecomposePass::IsEnabled(const ConfigProto& config_proto,
Status GraphDecomposePass::Run(const ConfigProto& config_proto,
mlir::ModuleOp module, const Graph& graph) {
if (!IsEnabled(config_proto, graph)) {
LOG_FIRST_N(INFO, 1) << "Skipping Graph Decomposition Pass, decompositin "
"library was not found";
LOG_FIRST_N(INFO, 1) << "Skipping Graph Decomposition Pass, decomposition"
" library was not found";
return Status::OK();
}