diff options
-rw-r--r-- | URPM.pm | 4 | ||||
-rw-r--r-- | URPM.xs | 6 |
2 files changed, 5 insertions, 5 deletions
@@ -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() @@ -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) { |