aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-11-14 12:15:36 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-11-14 12:39:32 -0800
commit5844c589143cb59e55e24776f8eb9b757f75d226 (patch)
tree72f6a4072675b5b4d4e85ccdfed1d652e9c66a59
parent301a6c41cbb111fae89657a49775920aa70525fd (diff)
fix a typo in the comment.
PiperOrigin-RevId: 175716586
-rw-r--r--tensorflow/core/lib/core/threadpool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/core/lib/core/threadpool.h b/tensorflow/core/lib/core/threadpool.h
index 251d58817e..b89b74b8de 100644
--- a/tensorflow/core/lib/core/threadpool.h
+++ b/tensorflow/core/lib/core/threadpool.h
@@ -30,7 +30,7 @@ class ThreadPool {
// Constructs a pool that contains "num_threads" threads with specified
// "name". env->StartThread() is used to create individual threads with the
// given ThreadOptions. If "low_latency_hint" is true the thread pool
- // implementation may use it as a hint that lower latency if preferred at the
+ // implementation may use it as a hint that lower latency is preferred at the
// cost of higher CPU usage, e.g. by letting one or more idle threads spin
// wait. Conversely, if the threadpool is used to schedule high-latency
// operations like I/O the hint should be set to false.