aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/ops/custom_gradient.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/ops/custom_gradient.py')
-rw-r--r--tensorflow/python/ops/custom_gradient.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/python/ops/custom_gradient.py b/tensorflow/python/ops/custom_gradient.py
index 9eacac1b37..dfa07abfc6 100644
--- a/tensorflow/python/ops/custom_gradient.py
+++ b/tensorflow/python/ops/custom_gradient.py
@@ -95,7 +95,7 @@ def custom_gradient(f):
if not context.executing_eagerly():
if kwargs:
raise ValueError(
- "The custom_gradient decorator currently suports keywords "
+ "The custom_gradient decorator currently supports keywords "
"arguments only when eager execution is enabled.")
name = "CustomGradient-%s" % ops.uid()
args = [ops.convert_to_tensor(x) for x in args]