Mercurial > public > mercurial-scm > hg-stable
diff rust/hg-core/src/repo.rs @ 50010:750409505286
rust-clippy: merge "revlog" module definition and struct implementation
Module inception is confusing when looking for code and almost never
the right choice.
author | Rapha?l Gom?s <rgomes@octobus.net> |
---|---|
date | Tue, 10 Jan 2023 11:20:54 +0100 |
parents | e98fd81bb151 |
children | a6b8b1ab9116 |
line wrap: on
line diff
--- a/rust/hg-core/src/repo.rs Tue Jan 10 10:57:15 2023 +0100 +++ b/rust/hg-core/src/repo.rs Tue Jan 10 11:20:54 2023 +0100 @@ -8,7 +8,7 @@ use crate::lock::{try_with_lock_no_wait, LockError}; use crate::manifest::{Manifest, Manifestlog}; use crate::revlog::filelog::Filelog; -use crate::revlog::revlog::RevlogError; +use crate::revlog::RevlogError; use crate::utils::files::get_path_from_bytes; use crate::utils::hg_path::HgPath; use crate::utils::SliceExt;