You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Find an object as identified by [`ObjectId`][git_hash::ObjectId] and store its data in full in the provided `buffer`.
25
25
/// This will search the object in all contained object databases.
26
26
/// Use a `pack_cache` to accelerate pack access by reducing the amount of work duplication, or [`pack::cache::Never`] to disable any caching.
@@ -44,7 +44,7 @@ impl compound::Backend {
44
44
}
45
45
46
46
/// Internal-use function to look up a packed object index or loose object.
47
-
/// Used to avoid double-lookups in linked::Db::locate.
47
+
/// Used to avoid double-lookups in linked::Store::locate.
48
48
/// (The polonius borrow-checker would support this via the locate
49
49
/// function, so this can be [simplified](https://github.com/Byron/gitoxide/blob/0c5f4043da4615820cb180804a81c2d4fe75fe5e/git-odb/src/compound/locate.rs#L47)
50
50
/// once polonius is stable.)
@@ -73,7 +73,7 @@ impl compound::Backend {
73
73
}
74
74
75
75
/// Special-use function to look up an object index. Used to avoid double-lookups in
76
-
/// [compound::Backend::find()][crate::store::compound::Backend::find()]. (The polonius borrow-checker would support this via the 'find'
76
+
/// [compound::Store::find()][crate::store::compound::Store::find()]. (The polonius borrow-checker would support this via the 'find'
77
77
/// function, so this can be [simplified](https://github.com/Byron/gitoxide/blob/0c5f4043da4615820cb180804a81c2d4fe75fe5e/git-odb/src/compound/locate.rs#L47)
0 commit comments