rust/hg-core/src/dirstate/entry.rs
changeset 48257 f45d35950db6
parent 48254 b874e8d81a98
child 48258 c591944f42c1
--- a/rust/hg-core/src/dirstate/entry.rs	Tue Oct 19 19:03:39 2021 +0200
+++ b/rust/hg-core/src/dirstate/entry.rs	Mon Oct 18 19:02:40 2021 +0200
@@ -114,16 +114,16 @@
     /// If someone is manipulating the modification times of some files to
     /// intentionally make `hg status` return incorrect results, not truncating
     /// wouldn’t help much since they can set exactly the expected timestamp.
-    pub fn very_likely_equal(self, other: Self) -> bool {
+    pub fn likely_equal(self, other: Self) -> bool {
         self.truncated_seconds == other.truncated_seconds
             && self.nanoseconds == other.nanoseconds
     }
 
-    pub fn very_likely_equal_to_mtime_of(
+    pub fn likely_equal_to_mtime_of(
         self,
         metadata: &fs::Metadata,
     ) -> io::Result<bool> {
-        Ok(self.very_likely_equal(Self::for_mtime_of(metadata)?))
+        Ok(self.likely_equal(Self::for_mtime_of(metadata)?))
     }
 }