diff rust/hg-core/src/revlog/revlog.rs @ 47968:6f579618ea7b

rust: Rename the `Revlog::get_node_rev` method to `rev_from_node` This better describes the input and outputs of this method. Also rewrite the doc-comment, which seemed to have been left from copy-paste of another method. Differential Revision: https://phab.mercurial-scm.org/D11415
author Simon Sapin <simon.sapin@octobus.net>
date Tue, 14 Sep 2021 18:10:35 +0200
parents 6c653d9d41b8
children 87e3f878e65f
line wrap: on
line diff
--- a/rust/hg-core/src/revlog/revlog.rs	Tue Sep 14 18:07:11 2021 +0200
+++ b/rust/hg-core/src/revlog/revlog.rs	Tue Sep 14 18:10:35 2021 +0200
@@ -124,9 +124,9 @@
         Some(self.index.get_entry(rev)?.hash())
     }
 
-    /// Return the full data associated to a node.
+    /// Return the revision number for the given node ID, if it exists in this revlog
     #[timed]
-    pub fn get_node_rev(
+    pub fn rev_from_node(
         &self,
         node: NodePrefix,
     ) -> Result<Revision, RevlogError> {