Skip to content

Commit eed73c0

Browse files
committed
Make Incompatibility::iter public (#41)
1 parent 09cb0e5 commit eed73c0

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
@@ -256,7 +256,7 @@ impl<P: Package, VS: VersionSet, M: Eq + Clone + Debug + Display> Incompatibilit
256256
}
257257

258258
/// Iterate over packages.
259-
pub(crate) fn iter(&self) -> impl Iterator<Item = (Id<P>, &Term<VS>)> {
259+
pub fn iter(&self) -> impl Iterator<Item = (Id<P>, &Term<VS>)> {
260260
self.package_terms
261261
.iter()
262262
.map(|(package, term)| (*package, term))

0 commit comments

Comments
 (0)