aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2016-12-14 14:37:48 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-12-14 14:46:57 -0800
commit786a736b3e119990124ba0af04d9f023fbeee84b (patch)
tree2f7deca2bf6ff851389bf714c61fcc8211df6faa /tensorflow
parent1deb03e643cf9d7993b748d4f7c84851d16c4f3f (diff)
Make comment more concise in C++ API.
Change: 142065959
Diffstat (limited to 'tensorflow')
-rw-r--r--tensorflow/cc/framework/scope.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/cc/framework/scope.h b/tensorflow/cc/framework/scope.h
index b2861fabc3..edf25e2227 100644
--- a/tensorflow/cc/framework/scope.h
+++ b/tensorflow/cc/framework/scope.h
@@ -203,7 +203,7 @@ class Scope {
// A NameMap is used to keep track of suffixes for names used in a scope. A
// name that has not been used so far in a scope will get no suffix. Later
// uses of the same name will get suffixes _1, _2, _3, etc. Multiple scopes
- // can be sharing the same NameMap. For instance, a new scope created using
+ // can share the same NameMap. For instance, a new scope created using
// WithControlDependencies() should would share the same NameMap with the
// parent.
typedef std::unordered_map<string, int> NameMap;