]> git.saurik.com Git - apt.git/commitdiff
Typo fixes.
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 17:00:44 +0000 (17:00 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 17:00:44 +0000 (17:00 +0000)
Author: doogie
Date: 2003-02-10 01:40:58 GMT
Typo fixes.

apt-pkg/contrib/cmndline.cc
apt-pkg/pkgcache.cc
cmdline/apt-cache.cc

index 6f0de103b653d2f1d4e708539d1e9ce164791de5..2b3d7dc9626d59ef79375a5f1b0430041985a49c 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: cmndline.cc,v 1.14 2002/11/11 06:58:55 doogie Exp $
+// $Id: cmndline.cc,v 1.15 2003/02/10 01:40:58 doogie Exp $
 /* ######################################################################
 
    Command Line Class - Sophisticated command line parser
@@ -198,13 +198,13 @@ bool CommandLine::HandleOpt(int &I,int argc,const char *argv[],
         const char *J;
         for (J = Argument; *J != 0 && *J != '='; J++);
         if (*J == 0)
-           return _error->Error(_("Option %s: Configuration item sepecification must have an =<val>."),argv[I]);
+           return _error->Error(_("Option %s: Configuration item specification must have an =<val>."),argv[I]);
 
         // = is trailing
         if (J[1] == 0)
         {
            if (I+1 >= argc)
-              return _error->Error(_("Option %s: Configuration item sepecification must have an =<val>."),argv[I]);
+              return _error->Error(_("Option %s: Configuration item specification must have an =<val>."),argv[I]);
            Conf->Set(string(Argument,J-Argument),string(argv[I++ +1]));
         }
         else
index 484cde5f4fc6ef3ae7f3b59c5c045bde9d234a19..45379361a7b1c31010e2c4269936217836d39733 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: pkgcache.cc,v 1.36 2001/07/01 22:28:24 jgg Exp $
+// $Id: pkgcache.cc,v 1.37 2003/02/10 01:40:58 doogie Exp $
 /* ######################################################################
    
    Package Cache - Accessor code for the cache
@@ -144,7 +144,7 @@ bool pkgCache::ReMap()
    // Chcek the arhcitecture
    if (HeaderP->Architecture == 0 ||
        _config->Find("APT::Architecture") != StrP + HeaderP->Architecture)
-      return _error->Error(_("The package cache was build for a different architecture"));
+      return _error->Error(_("The package cache was built for a different architecture"));
    return true;
 }
                                                                        /*}}}*/
index 7b9fdbd2250c8c28351b21d3a5cdaa8e96593eea..875b3cf8ac0f44cb127f4e67711200ce051e279f 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: apt-cache.cc,v 1.60 2003/01/11 07:18:44 jgg Exp $
+// $Id: apt-cache.cc,v 1.61 2003/02/10 01:40:58 doogie Exp $
 /* ######################################################################
    
    apt-cache - Manages the cache files
@@ -1268,7 +1268,7 @@ bool ShowHelp(CommandLine &Cmd)
       "cache files, and query information from them\n"
       "\n"
       "Commands:\n"
-      "   add - Add an package file to the source cache\n"
+      "   add - Add a package file to the source cache\n"
       "   gencaches - Build both the package and source cache\n"
       "   showpkg - Show some general information for a single package\n"
       "   showsrc - Show source records\n"