dynamic_suite: spelling fix comparitors -> comparators

BUG=None
TEST=unit tests

Change-Id: Ibd8ef1f193e3df840010a447ac11888c368ff76c
Reviewed-on: https://chromium-review.googlesource.com/316434
Commit-Ready: Aviv Keshet <akeshet@chromium.org>
Tested-by: Aviv Keshet <akeshet@chromium.org>
Reviewed-by: Richard Barnette <jrbarnette@chromium.org>
diff --git a/server/cros/dynamic_suite/comparitors.py b/server/cros/dynamic_suite/comparators.py
similarity index 97%
rename from server/cros/dynamic_suite/comparitors.py
rename to server/cros/dynamic_suite/comparators.py
index 25d3d49..5581bab 100644
--- a/server/cros/dynamic_suite/comparitors.py
+++ b/server/cros/dynamic_suite/comparators.py
@@ -2,7 +2,7 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
-"""Comparitors for use in dynamic_suite module unit tests."""
+"""Comparators for use in dynamic_suite module unit tests."""
 
 import mox
 
diff --git a/server/cros/dynamic_suite/suite_unittest.py b/server/cros/dynamic_suite/suite_unittest.py
index a406f70..41aa7b0 100755
--- a/server/cros/dynamic_suite/suite_unittest.py
+++ b/server/cros/dynamic_suite/suite_unittest.py
@@ -25,7 +25,7 @@
 from autotest_lib.server.cros.dynamic_suite import control_file_getter
 from autotest_lib.server.cros.dynamic_suite import job_status
 from autotest_lib.server.cros.dynamic_suite import reporting
-from autotest_lib.server.cros.dynamic_suite.comparitors import StatusContains
+from autotest_lib.server.cros.dynamic_suite.comparators import StatusContains
 from autotest_lib.server.cros.dynamic_suite.suite import Suite
 from autotest_lib.server.cros.dynamic_suite.suite import RetryHandler
 from autotest_lib.server.cros.dynamic_suite.fakes import FakeControlData
diff --git a/site_utils/suite_scheduler/task.py b/site_utils/suite_scheduler/task.py
index aaa74b1..013f2fb 100644
--- a/site_utils/suite_scheduler/task.py
+++ b/site_utils/suite_scheduler/task.py
@@ -126,7 +126,7 @@
     Task.  Each instance has enough info to schedule itself
     on-demand with the AFE.
 
-    This class also overrides __hash__() and all comparitor methods to enable
+    This class also overrides __hash__() and all comparator methods to enable
     correct use in dicts, sets, etc.
     """
 
@@ -367,7 +367,7 @@
                 else:
                     self._bare_branches.append(spec)
 
-        # Since we expect __hash__() and other comparitor methods to be used
+        # Since we expect __hash__() and other comparator methods to be used
         # frequently by set operations, and they use str() a lot, pre-compute
         # the string representation of this object.
         if num is None: