aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/summary
diff options
context:
space:
mode:
authorGravatar Aurelien Geron <aurelien.geron@gmail.com>2018-08-12 22:44:11 +0100
committerGravatar Aurelien Geron <aurelien.geron@gmail.com>2018-08-12 22:44:11 +0100
commit050f41a42d517cb0af9fdb751bdea124b696652b (patch)
tree1e4ef640b0072cba0c0c039cd7944c2fe7719819 /tensorflow/python/summary
parent1a22b0b982fa1a953651b98af8f3cd30542048fd (diff)
Fix typo: compatbility => compatibility
Diffstat (limited to 'tensorflow/python/summary')
-rw-r--r--tensorflow/python/summary/summary.py6
-rw-r--r--tensorflow/python/summary/writer/writer.py2
2 files changed, 4 insertions, 4 deletions
diff --git a/tensorflow/python/summary/summary.py b/tensorflow/python/summary/summary.py
index f3a6d47500..980320cc66 100644
--- a/tensorflow/python/summary/summary.py
+++ b/tensorflow/python/summary/summary.py
@@ -268,7 +268,7 @@ def merge(inputs, collections=None, name=None):
@compatibility(eager)
Not compatible with eager execution. To write TensorBoard
summaries under eager execution, use `tf.contrib.summary` instead.
- @end_compatbility
+ @end_compatibility
"""
# pylint: enable=line-too-long
if _context.executing_eagerly():
@@ -304,7 +304,7 @@ def merge_all(key=_ops.GraphKeys.SUMMARIES, scope=None, name=None):
@compatibility(eager)
Not compatible with eager execution. To write TensorBoard
summaries under eager execution, use `tf.contrib.summary` instead.
- @end_compatbility
+ @end_compatibility
"""
if _context.executing_eagerly():
raise RuntimeError(
@@ -336,7 +336,7 @@ def get_summary_description(node_def):
@compatibility(eager)
Not compatible with eager execution. To write TensorBoard
summaries under eager execution, use `tf.contrib.summary` instead.
- @end_compatbility
+ @end_compatibility
"""
if node_def.op != 'TensorSummary':
diff --git a/tensorflow/python/summary/writer/writer.py b/tensorflow/python/summary/writer/writer.py
index 861a3e920d..16b8626476 100644
--- a/tensorflow/python/summary/writer/writer.py
+++ b/tensorflow/python/summary/writer/writer.py
@@ -352,7 +352,7 @@ class FileWriter(SummaryToEventTransformer):
@compatibility(eager)
`FileWriter` is not compatible with eager execution. To write TensorBoard
summaries under eager execution, use `tf.contrib.summary` instead.
- @end_compatbility
+ @end_compatibility
"""
if context.executing_eagerly():
raise RuntimeError(