← Back to team overview

launchpad-reviewers team mailing list archive

[Merge] ~jugmac00/launchpad:fix-typo-in-cannot into launchpad:master

 

Jürgen Gmach has proposed merging ~jugmac00/launchpad:fix-typo-in-cannot into launchpad:master.

Commit message:
Fix typos

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)

For more details, see:
https://code.launchpad.net/~jugmac00/launchpad/+git/launchpad/+merge/420406
-- 
Your team Launchpad code reviewers is requested to review the proposed merge of ~jugmac00/launchpad:fix-typo-in-cannot into launchpad:master.
diff --git a/lib/lp/answers/interfaces/faq.py b/lib/lp/answers/interfaces/faq.py
index f51a0ab..75c81f2 100644
--- a/lib/lp/answers/interfaces/faq.py
+++ b/lib/lp/answers/interfaces/faq.py
@@ -39,7 +39,7 @@ from lp.services.fields import (
 
 @error_status(http.client.BAD_REQUEST)
 class CannotDeleteFAQ(Exception):
-    """The FAQ cannnot be deleted."""
+    """The FAQ cannot be deleted."""
 
 
 class IFAQPublic(IHasOwner):
diff --git a/lib/lp/registry/browser/tests/productseries-setbranch-view.txt b/lib/lp/registry/browser/tests/productseries-setbranch-view.txt
index 3080a22..dbe710c 100644
--- a/lib/lp/registry/browser/tests/productseries-setbranch-view.txt
+++ b/lib/lp/registry/browser/tests/productseries-setbranch-view.txt
@@ -232,7 +232,7 @@ But Git branches may use git.
     >>> print(series.branch.name)
     chevette-branch
 
-But Subversion branches cannnot use git.
+But Subversion branches cannot use git.
 
     >>> form = {
     ...     'field.branch_type': 'import-external',
diff --git a/lib/lp/registry/interfaces/ociproject.py b/lib/lp/registry/interfaces/ociproject.py
index 558285c..93258f0 100644
--- a/lib/lp/registry/interfaces/ociproject.py
+++ b/lib/lp/registry/interfaces/ociproject.py
@@ -75,7 +75,7 @@ OCI_PROJECT_ALLOW_CREATE = 'oci.project.create.enabled'
 
 @error_status(http.client.BAD_REQUEST)
 class CannotDeleteOCIProject(Exception):
-    """The OCIProject cannnot be deleted."""
+    """The OCIProject cannot be deleted."""
 
 
 @error_status(http.client.UNAUTHORIZED)