summaryrefslogtreecommitdiffstats
path: root/urpm/orphans.pm
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2014-09-07 03:21:35 +0200
committerThierry Vignaud <thierry.vignaud@gmail.com>2014-09-07 05:20:18 +0200
commit910556000286fdeb4e389c2b801ef467bfbfb0a0 (patch)
tree9fa83d07b7d2a971d50bdc488d8f02cb49c94490 /urpm/orphans.pm
parent92b7e464cb106039611e4bfddfa23265903deed6 (diff)
downloadurpmi-910556000286fdeb4e389c2b801ef467bfbfb0a0.tar
urpmi-910556000286fdeb4e389c2b801ef467bfbfb0a0.tar.gz
urpmi-910556000286fdeb4e389c2b801ef467bfbfb0a0.tar.bz2
urpmi-910556000286fdeb4e389c2b801ef467bfbfb0a0.tar.xz
urpmi-910556000286fdeb4e389c2b801ef467bfbfb0a0.zip
s/suggests/recommends/
Diffstat (limited to 'urpm/orphans.pm')
-rw-r--r--urpm/orphans.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/urpm/orphans.pm b/urpm/orphans.pm
index 5068cd1d..5ba1656f 100644
--- a/urpm/orphans.pm
+++ b/urpm/orphans.pm
@@ -226,7 +226,7 @@ sub check_unrequested_orphans_after_auto_select {
This function computes whether removing $toremove packages will create
unrequested orphans.
-It does not return the new orphans since "whatsuggests" is not
+It does not return the new orphans since "whatrecommends" is not
available,
If it detects there are new orphans, _all_unrequested_orphans() must
@@ -247,7 +247,7 @@ sub unrequested_orphans_after_remove {
sub _unrequested_orphans_after_remove_once {
my ($urpm, $db, $unrequested, $toremove) = @_;
- # first we get the list of requires/suggests that may be unneeded after removing $toremove
+ # first we get the list of requires/recommends that may be unneeded after removing $toremove
my @requires;
foreach my $fn (keys %$toremove) {
my ($n) = $fn =~ $fullname2name_re;