Fix an indentations in TF_FloorDivOp and TF_FloorModOp. Since I'm learning TableGen, the old indenting looked like some kind of multi-result op.

Also fix a spelling mistake.

PiperOrigin-RevId: 325068361
Change-Id: Iab046c326a588b4f09c2410d127a5bd6a29f2fb2
This commit is contained in:
A. Unique TensorFlower 2020-08-05 11:58:54 -07:00 committed by TensorFlower Gardener
parent ef0f08f5dd
commit bbc57503e6

View File

@ -128,7 +128,7 @@ def : Pat<(TF_FloorDivOp AnyRankedTensor:$l, AnyRankedTensor:$r),
// return x / y;
// }
//
// BraodcastToDimensions is used to compute the broadcast attr to higher
// BroadcastToDimensions is used to compute the broadcast attr to higher
// dimensions. This computes the broadcast of 'l' to broadcast('l', 'r')
// without returning the broadcast of 'r' to broadcast('l', 'r').
//