fix typo (#16679)
authorManHyuk <manhyuk@kw.ac.kr>
Sat, 3 Feb 2018 00:38:55 +0000 (09:38 +0900)
committerAndrew Harp <andrewharp@users.noreply.github.com>
Sat, 3 Feb 2018 00:38:55 +0000 (19:38 -0500)
tensorflow/compiler/xla/python/xla_client.py
tensorflow/contrib/nearest_neighbor/kernels/heap.h

index b890980..2c693f0 100644 (file)
@@ -1072,7 +1072,7 @@ def initialize_replica_count(replica_count):
 
   Args:
     replica_count: number of replicas that are desired for set up during XLA
-      initalization.
+      initialization.
 
   Raises:
     A runtime exception if the XLA service has already been initialized.
index 3292556..a2dbb80 100644 (file)
@@ -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_)) {