From 0fe7f32cb73629704043be61d928411a74a0bdc1 Mon Sep 17 00:00:00 2001 From: Martin Kletzander Date: Thu, 19 Mar 2015 17:25:56 +0100 Subject: [PATCH] Fix common misspellings Wikipedia's list of common misspellings [1] has a machine-readable version. This patch fixes those misspellings mentioned in the list which don't have multiple right variants (as e.g. "accension", which can be both "accession" and "ascension"), such misspellings are left untouched. The list of changes was manually re-checked for false positives. [1] https://en.wikipedia.org/wiki/Wikipedia:Lists_of_common_misspellings/For_machines Change-Id: Iea72412c82ac9ec8bf09bb80057e073bf8f672f6 Signed-off-by: Martin Kletzander --- horizon/forms/views.py | 2 +- openstack_dashboard/test/api_tests/neutron_tests.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/horizon/forms/views.py b/horizon/forms/views.py index e137f0edce..f6276e31ca 100644 --- a/horizon/forms/views.py +++ b/horizon/forms/views.py @@ -121,7 +121,7 @@ class ModalFormView(ModalBackdropMixin, ModalFormMixin, views.HorizonFormView): .. attribute: cancel_url (optional) The url for a cancel action. This url defaults to the success_url - if ommitted. Note that the cancel_url redirect is nullified when + if omitted. Note that the cancel_url redirect is nullified when shown in a modal dialog. """ diff --git a/openstack_dashboard/test/api_tests/neutron_tests.py b/openstack_dashboard/test/api_tests/neutron_tests.py index 8de04dfb7b..5f9940ad62 100644 --- a/openstack_dashboard/test/api_tests/neutron_tests.py +++ b/openstack_dashboard/test/api_tests/neutron_tests.py @@ -402,7 +402,7 @@ class NeutronApiTests(test.APITestCase): # filter. It generates about 40*10 char length URI. # Each port ID is converted to "id=&" in URI and # it means 40 chars (len(UUID)=36). - # If excess lenght is 220, it means 400-220=180 chars + # If excess length is 220, it means 400-220=180 chars # can be sent in the first request. # As a result three API calls with 4, 4, 2 port ID # are expected.