aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2014-05-09 19:54:28 +0200
committerThierry Vignaud <thierry.vignaud@gmail.com>2014-05-09 19:54:57 +0200
commit84cf07b193c6252edef88bbdc8182dc2d5b76506 (patch)
treed07a74ccc5e060625c4b644c0a53fb238a9e644c
parente7051c7d898268daaff6978f1468d39029731f58 (diff)
downloadperl-URPM-84cf07b193c6252edef88bbdc8182dc2d5b76506.tar
perl-URPM-84cf07b193c6252edef88bbdc8182dc2d5b76506.tar.gz
perl-URPM-84cf07b193c6252edef88bbdc8182dc2d5b76506.tar.bz2
perl-URPM-84cf07b193c6252edef88bbdc8182dc2d5b76506.tar.xz
perl-URPM-84cf07b193c6252edef88bbdc8182dc2d5b76506.zip
typo fix
-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;
}