Skip to content

Commit d69cf5f

Browse files
committed
Make Incompatibility::iter public (#41)
1 parent c108cb6 commit d69cf5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/internal/incompatibility.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ impl<P: Package, VS: VersionSet, M: Eq + Clone + Debug + Display> Incompatibilit
248248
}
249249

250250
/// Iterate over packages.
251-
pub(crate) fn iter(&self) -> impl Iterator<Item = (Id<P>, &Term<VS>)> {
251+
pub fn iter(&self) -> impl Iterator<Item = (Id<P>, &Term<VS>)> {
252252
self.package_terms
253253
.iter()
254254
.map(|(package, term)| (*package, term))

0 commit comments

Comments
 (0)