aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/autograph/operators/control_flow.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/autograph/operators/control_flow.py')
-rw-r--r--tensorflow/contrib/autograph/operators/control_flow.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/contrib/autograph/operators/control_flow.py b/tensorflow/contrib/autograph/operators/control_flow.py
index 9f7202821f..671c9ccc13 100644
--- a/tensorflow/contrib/autograph/operators/control_flow.py
+++ b/tensorflow/contrib/autograph/operators/control_flow.py
@@ -174,7 +174,7 @@ def while_stmt(test, body, init_state, extra_deps, opts=None):
Tuple containing the final state.
"""
# TODO(mdan): Consider adding a generic mechanism for dynamic dispatch.
- # That could be somethins as simple as a collection of dispatch rules, with
+ # That could be something as simple as a collection of dispatch rules, with
# some prioritization.
if any(tensor_util.is_tensor(v) for v in init_state + extra_deps):
return _tf_while_stmt(test, body, init_state, opts)