diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 17:00:44 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 17:00:44 +0000 |
commit | bac2e715204b341d7818444c4a4ad2e3e4e5b18d (patch) | |
tree | 1f014a572ff4b7af50194ff820678960b6bcdd79 /apt-pkg | |
parent | 13b6231dae1b98bfef9a896391bda93eec3bd45d (diff) |
Typo fixes.
Author: doogie
Date: 2003-02-10 01:40:58 GMT
Typo fixes.
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/contrib/cmndline.cc | 6 | ||||
-rw-r--r-- | apt-pkg/pkgcache.cc | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/apt-pkg/contrib/cmndline.cc b/apt-pkg/contrib/cmndline.cc index 6f0de103b..2b3d7dc96 100644 --- a/apt-pkg/contrib/cmndline.cc +++ b/apt-pkg/contrib/cmndline.cc @@ -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 diff --git a/apt-pkg/pkgcache.cc b/apt-pkg/pkgcache.cc index 484cde5f4..45379361a 100644 --- a/apt-pkg/pkgcache.cc +++ b/apt-pkg/pkgcache.cc @@ -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; } /*}}}*/ |