mercurial/util.py
changeset 30332 318a24b52eeb
parent 30329 dadb00a0ec0f
child 30350 358cda0af6ee
--- a/mercurial/util.py	Thu Nov 03 17:31:14 2016 -0700
+++ b/mercurial/util.py	Mon Oct 17 23:16:55 2016 +0200
@@ -1456,7 +1456,7 @@
     def __eq__(self, old):
         try:
             # if ambiguity between stat of new and old file is
-            # avoided, comparision of size, ctime and mtime is enough
+            # avoided, comparison of size, ctime and mtime is enough
             # to exactly detect change of a file regardless of platform
             return (self.stat.st_size == old.stat.st_size and
                     self.stat.st_ctime == old.stat.st_ctime and