From cdc1fd985bdab65607ddba5ca5ef2749a45fedc0 Mon Sep 17 00:00:00 2001 From: Roman Soldatow Date: Sat, 13 Apr 2019 15:49:28 +0200 Subject: [PATCH] Fixing small typo in comment --- tensorflow/python/distribute/estimator_training.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/python/distribute/estimator_training.py b/tensorflow/python/distribute/estimator_training.py index 0ec6703b8692fe..7d98f959aa2c5b 100644 --- a/tensorflow/python/distribute/estimator_training.py +++ b/tensorflow/python/distribute/estimator_training.py @@ -73,7 +73,7 @@ def _get_global_id(cluster_spec, task_type, task_id, chief_task_type): if PS in cluster_spec.jobs: task_type_ordered_list.append(PS) - # Find the right gloabl_id for current task. + # Find the right global_id for current task. next_global_id = 0 for t in task_type_ordered_list: if t == task_type: