Fix some typos.
authorArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>
Tue, 14 Sep 2010 13:09:08 +0000 (15:09 +0200)
committerArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>
Tue, 14 Sep 2010 13:09:08 +0000 (15:09 +0200)
pym/portage/package/ebuild/_config/KeywordsManager.py
pym/portage/package/ebuild/_config/LicenseManager.py
pym/portage/package/ebuild/config.py

index 6df25fc1c590bb3aa39831505d9adf7333a6b8b3..f6b866795a73dea2e7c60528b22e08ad1a2a09e3 100644 (file)
@@ -85,9 +85,9 @@ class KeywordsManager(object):
        def getMissingKeywords(self, cpv, slot, keywords, global_accept_keywords, backuped_accept_keywords):
                """
                Take a package and return a list of any KEYWORDS that the user may
-               may need to accept for the given package. If the KEYWORDS are empty
+               need to accept for the given package. If the KEYWORDS are empty
                and the the ** keyword has not been accepted, the returned list will
-               contain ** alone (in order to distiguish from the case of "none
+               contain ** alone (in order to distinguish from the case of "none
                missing").
 
                @param cpv: The package name (for package.keywords support)
@@ -180,7 +180,7 @@ class KeywordsManager(object):
                else:
                        if not mygroups:
                                # If KEYWORDS is empty then we still have to return something
-                               # in order to distiguish from the case of "none missing".
+                               # in order to distinguish from the case of "none missing".
                                mygroups.append("**")
                        missing = mygroups
                return missing
index 627b03fa98d8f34b54872d742fb2ae92eeb3d645..498fea275a8e9806787ff2567a0229ddeafbaed0 100644 (file)
@@ -156,7 +156,7 @@ class LicenseManager(object):
 
        def getMissingLicenses(self, cpv, use, lic, slot):
                """
-               Take a LICENSE string and return a list any licenses that the user may
+               Take a LICENSE string and return a list of any licenses that the user
                may need to accept for the given package.  The returned list will not
                contain any licenses that have already been accepted.  This method
                can throw an InvalidDependString exception.
index 16fb02f7b3542ac5d43ad292ddf3cccdf1312027..733d36cfc2eac2e514d0d536e7a1b6b52cda03cb 100644 (file)
@@ -1451,9 +1451,9 @@ class config(object):
        def _getMissingKeywords(self, cpv, metadata):
                """
                Take a package and return a list of any KEYWORDS that the user may
-               may need to accept for the given package. If the KEYWORDS are empty
+               need to accept for the given package. If the KEYWORDS are empty
                and the the ** keyword has not been accepted, the returned list will
-               contain ** alone (in order to distiguish from the case of "none
+               contain ** alone (in order to distinguish from the case of "none
                missing").
 
                @param cpv: The package name (for package.keywords support)
@@ -1475,7 +1475,7 @@ class config(object):
 
        def _getMissingLicenses(self, cpv, metadata):
                """
-               Take a LICENSE string and return a list any licenses that the user may
+               Take a LICENSE string and return a list of any licenses that the user
                may need to accept for the given package.  The returned list will not
                contain any licenses that have already been accepted.  This method
                can throw an InvalidDependString exception.
@@ -1492,7 +1492,7 @@ class config(object):
 
        def _getMissingProperties(self, cpv, metadata):
                """
-               Take a PROPERTIES string and return a list of any properties the user may
+               Take a PROPERTIES string and return a list of any properties the user
                may need to accept for the given package.  The returned list will not
                contain any properties that have already been accepted.  This method
                can throw an InvalidDependString exception.