aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--URPM.pm4
-rw-r--r--URPM.xs6
2 files changed, 5 insertions, 5 deletions
diff --git a/URPM.pm b/URPM.pm
index 6935776..cfa403d 100644
--- a/URPM.pm
+++ b/URPM.pm
@@ -474,7 +474,7 @@ Return an array of human readable view of tag values. $tagid is the numerical va
=item $package->obsoletes_nosense()
-=item $package->obsoletes_overlap($s, [$b_nopromote,] [$direction])
+=item $package->obsoletes_overlap($s, [$nopromoteepoch,] [$direction])
=item $package->os()
@@ -486,7 +486,7 @@ Return an array of human readable view of tag values. $tagid is the numerical va
=item $package->provides_nosense()
-=item $package->provides_overlap($s, [$b_nopromote,] [$direction])
+=item $package->provides_overlap($s, [$nopromoteepoch,] [$direction])
=item $package->rate()
diff --git a/URPM.xs b/URPM.xs
index 466fbfe..1cd3f63 100644
--- a/URPM.xs
+++ b/URPM.xs
@@ -1752,7 +1752,7 @@ Pkg_compare_pkg(lpkg, rpkg)
lepoch = 0;
}
get_fullname_parts(lpkg, NULL, &lversion, &lrelease, &larch, &leos);
- /* temporaly mark end of each substring */
+ /* temporarily mark end of each substring */
lrelease[-1] = 0;
larch[-1] = 0;
} else if (lpkg->h) {
@@ -1772,7 +1772,7 @@ Pkg_compare_pkg(lpkg, rpkg)
repoch = 0;
}
get_fullname_parts(rpkg, NULL, &rversion, &rrelease, &rarch, &reos);
- /* temporaly mark end of each substring */
+ /* temporarily mark end of each substring */
rrelease[-1] = 0;
rarch[-1] = 0;
} else if (rpkg->h) {
@@ -1853,7 +1853,7 @@ Pkg_compare(pkg, evr)
_epoch = 0;
}
get_fullname_parts(pkg, NULL, &_version, &_release, &_eos, NULL);
- /* temporaly mark end of each substring */
+ /* temporarily mark end of each substring */
_release[-1] = 0;
_eos[-1] = 0;
} else if (pkg->h) {