Skip to content

Commit f0c84aa

Browse files
authored
docs: change doc comment of NoVersions (#65)
1 parent 3d8fd9d commit f0c84aa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/internal/incompatibility.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ pub struct Incompatibility<P: Package, V: Version> {
4141
enum Kind<P: Package, V: Version> {
4242
/// Initial incompatibility aiming at picking the root package for the first decision.
4343
NotRoot(P, V),
44-
/// No versions from range satisfy given constraints.
44+
/// There are no versions in the given range for this package.
4545
NoVersions(P, Range<V>),
4646
/// Dependencies of the package are unavailable for versions in that range.
4747
UnavailableDependencies(P, Range<V>),

src/report.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pub enum DerivationTree<P: Package, V: Version> {
3737
pub enum External<P: Package, V: Version> {
3838
/// Initial incompatibility aiming at picking the root package for the first decision.
3939
NotRoot(P, V),
40-
/// No versions from range satisfy given constraints.
40+
/// There are no versions in the given range for this package.
4141
NoVersions(P, Range<V>),
4242
/// Dependencies of the package are unavailable for versions in that range.
4343
UnavailableDependencies(P, Range<V>),

0 commit comments

Comments
 (0)