Mercurial > public > mercurial-scm > hg-stable
diff rust/hg-core/src/revlog/manifest.rs @ 47996: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 | 796206e74b10 |
children | 87e3f878e65f |
line wrap: on
line diff
--- a/rust/hg-core/src/revlog/manifest.rs Tue Sep 14 18:07:11 2021 +0200 +++ b/rust/hg-core/src/revlog/manifest.rs Tue Sep 14 18:10:35 2021 +0200 @@ -20,7 +20,7 @@ /// Return the `ManifestEntry` of a given node id. pub fn get_node(&self, node: NodePrefix) -> Result<Manifest, RevlogError> { - let rev = self.revlog.get_node_rev(node)?; + let rev = self.revlog.rev_from_node(node)?; self.get_rev(rev) }