summaryrefslogtreecommitdiff
path: root/dselect
diff options
context:
space:
mode:
authorJosh Soref <jsoref@gmail.com>2017-02-26 22:14:52 +0000
committerGuillem Jover <guillem@debian.org>2017-05-06 17:49:12 +0200
commitb46c8ba6504ab341d74e61f003124d772a3f3875 (patch)
treedae22bc641a6ea6278096919164aa875b34e9fa8 /dselect
parent4137592923011e34c865d34d202a02871c3840aa (diff)
downloaddpkg-b46c8ba6504ab341d74e61f003124d772a3f3875.tar.gz
doc: Spelling fixes
Signed-off-by: Guillem Jover <guillem@debian.org>
Diffstat (limited to 'dselect')
-rw-r--r--dselect/basecmds.cc2
-rwxr-xr-xdselect/methods/floppy/update2
-rwxr-xr-xdselect/methods/ftp/install.pl2
-rw-r--r--dselect/pkgdepcon.cc2
-rw-r--r--dselect/pkglist.cc2
5 files changed, 5 insertions, 5 deletions
diff --git a/dselect/basecmds.cc b/dselect/basecmds.cc
index 44ce64def..6af099ed7 100644
--- a/dselect/basecmds.cc
+++ b/dselect/basecmds.cc
@@ -107,7 +107,7 @@ baselist::matchsearch(int index)
name = itemname(index);
if (!name)
- return false; /* Skip things without a name (seperators). */
+ return false; /* Skip things without a name (separators). */
searchlen=strlen(searchstring);
lendiff = strlen(name) - searchlen;
diff --git a/dselect/methods/floppy/update b/dselect/methods/floppy/update
index 463f82050..890ea1519 100755
--- a/dselect/methods/floppy/update
+++ b/dselect/methods/floppy/update
@@ -84,6 +84,6 @@ Insert a disk containing a Packages file, or type q to quit. '
done
echo '
-OK, continuting with installation.'
+OK, continuing with installation.'
xit=0
diff --git a/dselect/methods/ftp/install.pl b/dselect/methods/ftp/install.pl
index 1dddb602c..2eb9f16a8 100755
--- a/dselect/methods/ftp/install.pl
+++ b/dselect/methods/ftp/install.pl
@@ -217,7 +217,7 @@ sub md5sum($) {
# construct list of files to get
# hash of filenames => size of downloaded part
-# query user for each paritial file
+# query user for each partial file
print "\nConstructing list of files to get...\n";
my %downloads;
my ($dir, @info, @files, $csize, $size);
diff --git a/dselect/pkgdepcon.cc b/dselect/pkgdepcon.cc
index e3d2dc4bb..87886ffb6 100644
--- a/dselect/pkgdepcon.cc
+++ b/dselect/pkgdepcon.cc
@@ -78,7 +78,7 @@ int packagelist::checkdependers(pkginfo *pkg, int changemade) {
int packagelist::resolvesuggest() {
// We continually go around looking for things to change, but we may
// only change the ‘suggested’ value if we also increase the ‘priority’
- // Return 2 if we made a change due to a Recommended, Depends or Conficts,
+ // Return 2 if we made a change due to a Recommended, Depends or Conflicts,
// or 1 if we offered or made a change because of an Optional line.
debug(dbg_general, "packagelist[%p]::resolvesuggest()", this);
int changemade, maxchangemade;
diff --git a/dselect/pkglist.cc b/dselect/pkglist.cc
index 823e754a8..105f3c1aa 100644
--- a/dselect/pkglist.cc
+++ b/dselect/pkglist.cc
@@ -547,7 +547,7 @@ packagelist::matchsearch(int index)
name = itemname(index);
if (!name)
- return false; /* Skip things without a name (seperators) */
+ return false; /* Skip things without a name (separators) */
if (regexec(&searchfsm, name, 0, nullptr, 0) == 0)
return true;