aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/nearest_neighbor
diff options
context:
space:
mode:
authorGravatar Ankur Taly <ataly@google.com>2018-02-16 18:22:55 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-02-16 18:27:19 -0800
commit0e6f39d1bd7fe8daa86944f6ab0dd94fbeb4962a (patch)
treeee0dabaff4147ecc9bc92acd2a50dadbfd694f39 /tensorflow/contrib/nearest_neighbor
parent128572c316e6f2eb6346f920314ef98e88e75069 (diff)
Merge changes from github.
PiperOrigin-RevId: 186073337
Diffstat (limited to 'tensorflow/contrib/nearest_neighbor')
-rw-r--r--tensorflow/contrib/nearest_neighbor/kernels/heap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/contrib/nearest_neighbor/kernels/heap.h b/tensorflow/contrib/nearest_neighbor/kernels/heap.h
index 32925569a8..a2dbb8052b 100644
--- a/tensorflow/contrib/nearest_neighbor/kernels/heap.h
+++ b/tensorflow/contrib/nearest_neighbor/kernels/heap.h
@@ -56,7 +56,7 @@ class HeapBase {
// This method adds an element at the end of the internal array without
// "heapifying" the array afterwards. This is useful for setting up a heap
- // where a single call to heapify at the end of the inital insertion
+ // where a single call to heapify at the end of the initial insertion
// operations suffices.
void InsertUnsorted(const KeyType& key, const DataType& data) {
if (v_.size() == static_cast<size_t>(num_elements_)) {