[XLA] Fix typo

PiperOrigin-RevId: 257492187
This commit is contained in:
Justin Lebar 2019-07-10 15:17:24 -07:00 committed by TensorFlower Gardener
parent 22f1546586
commit 3aa7f23139

View File

@ -225,7 +225,7 @@ bool MultiOutputFusion::LegalToFuse(HloInstruction* instr1,
return false;
}
// Fusing nodes with 0 user makes no sense and the rest of the implementation
// Fusing nodes with 0 users makes no sense and the rest of the implementation
// doesn't support it either.
if (instr1->user_count() == 0 || instr2->user_count() == 0) {
return false;