aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--URPM/Resolve.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/URPM/Resolve.pm b/URPM/Resolve.pm
index bcc23f0..ede8541 100644
--- a/URPM/Resolve.pm
+++ b/URPM/Resolve.pm
@@ -764,7 +764,7 @@ sub backtrack_selected {
foreach (@packages) {
#- avoid dead loop.
exists $state->{backtrack}{selected}{$_->id} and next;
- #- a package if found is problably rejected or there is a problem.
+ #- a package if found is probably rejected or there is a problem.
if ($state->{rejected}{$_->fullname}) {
#- keep in mind a backtrack has happening here...
exists $dep->{promote} and _add_rejected_backtrack($state, $_, { promote => [ $dep->{promote} ] });
@@ -774,7 +774,7 @@ sub backtrack_selected {
_add_rejected_backtrack($state, $_, { conflicts => [ $p ] });
}
#- backtrack callback should return a strictly positive value if the selection of the new
- #- package is prefered over the currently selected package.
+ #- package is preferred over the currently selected package.
next;
}
$state->{backtrack}{selected}{$_->id} = undef;
@@ -1165,7 +1165,7 @@ sub resolve_requested__no_suggests {
my ($urpm, $db, $state, $requested, %options) = @_;
foreach (keys %$requested) {
- #- keep track of requested packages by propating the flag.
+ #- keep track of requested packages by propagating the flag.
foreach (find_candidate_packages($urpm, $_)) {
$_->set_flag_requested;
}