aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Kay Zhu <kayzhu@google.com>2018-03-09 13:47:36 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-03-09 13:51:27 -0800
commiteeaf414ee2ed4d90ce451d622a2f19e301639529 (patch)
treeb88b08158c494495994bfb3c2f6b78303ca8e881
parent8fd38155b4e1d7fb1cb8b0583b51a7df2e15c92d (diff)
[XLA:Doc] Fix an typo "Alternately" -> "Alternatively".
PiperOrigin-RevId: 188532135
-rw-r--r--tensorflow/docs_src/performance/xla/operation_semantics.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/docs_src/performance/xla/operation_semantics.md b/tensorflow/docs_src/performance/xla/operation_semantics.md
index 8162382846..11a4ef4312 100644
--- a/tensorflow/docs_src/performance/xla/operation_semantics.md
+++ b/tensorflow/docs_src/performance/xla/operation_semantics.md
@@ -257,7 +257,7 @@ the range between the minimum and maximum, else returns the minimum value if the
operand is below this range or the maximum value if the operand is above this
range. That is, `clamp(a, x, b) = min(max(a, x), b)`.
-All three arrays must be the same shape. Alternately, as a restricted form of
+All three arrays must be the same shape. Alternatively, as a restricted form of
[broadcasting](broadcasting.md), `min` and/or `max` can be a scalar of type `T`.
Example with scalar `min` and `max`: