From 850b372d20c2ec3a6e4b193dc189c54f198f96c9 Mon Sep 17 00:00:00 2001 From: Amit <30853054+amitsrivastava78@users.noreply.github.com> Date: Wed, 20 Feb 2019 14:14:52 +0530 Subject: [PATCH] Updated tooling_util.cc Fixed typo error --- tensorflow/lite/toco/tooling_util.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/lite/toco/tooling_util.cc b/tensorflow/lite/toco/tooling_util.cc index ccd8008eac1..c1b683a1a9e 100644 --- a/tensorflow/lite/toco/tooling_util.cc +++ b/tensorflow/lite/toco/tooling_util.cc @@ -1273,7 +1273,7 @@ void FixEdgeArrays(Model* model) { void DedupeConstantArrays(Model* model, size_t min_size) { // Walk all 0..N and compare with the remaining n+1..N. - // This lets us avoid N^2 comparisions and erase duplicate arrays while + // This lets us avoid N^2 comparisons and erase duplicate arrays while // iterating. const auto& array_map = model->GetArrayMap(); for (auto lhs_array_it = array_map.begin(); lhs_array_it != array_map.end();