CachedRepo: trivial typo fixes in some code comments
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>
Wed, 5 Mar 2014 09:56:29 +0000 (11:56 +0200)
committerMarkus Lehtonen <markus.lehtonen@linux.intel.com>
Wed, 5 Mar 2014 09:56:29 +0000 (11:56 +0200)
Change-Id: If22edde90b45bf5a48b71cdfe741b27b1409f9e5
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
gbp_repocache/__init__.py

index 7400bb3c42d09a0bcc40f7c934c2c507ab6f6c54..122888a8324a42da10102861e5ba0cdf94a29a48 100644 (file)
@@ -228,10 +228,10 @@ class CachedRepo(object):
 
         # Update HEAD from FETCH_HEAD, so that HEAD points to remote HEAD.
         # We do it this way because FETCH_HEAD may point to an invalid object
-        # and we don't wont to update the working copy at this point.
+        # and we don't want to update the working copy at this point.
         shutil.copyfile(os.path.join(self.repo.git_dir, 'FETCH_HEAD'),
                         os.path.join(self.repo.git_dir, 'HEAD'))
-        # Clean: just in case - this should be never ever really be necessary
+        # Clean: just in case - this should never ever really be necessary
         # unless somebody manually hacks the cached repository introducing
         # local changes
         self.repo.force_clean()