File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -111,9 +111,7 @@ pub mod ancestors {
111
111
///
112
112
/// * `find` - a way to lookup new object data during traversal by their ObjectId, writing their data into buffer and returning
113
113
/// an iterator over commit tokens if the object is present and is a commit. Caching should be implemented within this function
114
- /// as needed. The return value is `Option<CommitIter>` which degenerates all error information. Not finding a commit should also
115
- /// be considered an errors as all objects in the commit graph should be present in the database. Hence [`Error::NotFound`] should
116
- /// be escalated into a more specific error if its encountered by the caller.
114
+ /// as needed.
117
115
/// * `state` - all state used for the traversal. If multiple traversals are performed, allocations can be minimized by reusing
118
116
/// this state.
119
117
/// * `tips`
@@ -135,9 +133,7 @@ pub mod ancestors {
135
133
///
136
134
/// * `find` - a way to lookup new object data during traversal by their ObjectId, writing their data into buffer and returning
137
135
/// an iterator over commit tokens if the object is present and is a commit. Caching should be implemented within this function
138
- /// as needed. The return value is `Option<CommitIter>` which degenerates all error information. Not finding a commit should also
139
- /// be considered an errors as all objects in the commit graph should be present in the database. Hence [`Error::NotFound`] should
140
- /// be escalated into a more specific error if its encountered by the caller.
136
+ /// as needed.
141
137
/// * `state` - all state used for the traversal. If multiple traversals are performed, allocations can be minimized by reusing
142
138
/// this state.
143
139
/// * `tips`
You can’t perform that action at this time.
0 commit comments