summaryrefslogtreecommitdiff
path: root/heat
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2021-03-11 21:19:08 +0000
committerGerrit Code Review <review@openstack.org>2021-03-11 21:19:08 +0000
commit4d07bb79145eaf278575c6451d48bb67767acdb4 (patch)
treef88e4f7126676813d583a3e4765afc9fa0bef45c /heat
parent9c37e0457c789c50ceabb95c50b8eeca219c3ebf (diff)
parentdbe7ed82a1a9d64ed9a3d0183df7c09d6b9465ae (diff)
downloadheat-4d07bb79145eaf278575c6451d48bb67767acdb4.tar.gz
Merge "Fix duplicated words issue like "can be be used""
Diffstat (limited to 'heat')
-rw-r--r--heat/common/lifecycle_plugin_utils.py2
-rw-r--r--heat/engine/resources/openstack/neutron/sfc/port_pair_group.py2
-rw-r--r--heat/engine/resources/openstack/nova/server_network_mixin.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/heat/common/lifecycle_plugin_utils.py b/heat/common/lifecycle_plugin_utils.py
index c1a4bd007..48745889e 100644
--- a/heat/common/lifecycle_plugin_utils.py
+++ b/heat/common/lifecycle_plugin_utils.py
@@ -30,7 +30,7 @@ def get_plug_point_class_instances():
The list of class instances is sorted using get_ordinal methods
on the plug point classes. If class1.ordinal() < class2.ordinal(),
- then class1 will be before before class2 in the list.
+ then class1 will be before class2 in the list.
"""
global pp_class_instances
if pp_class_instances is None:
diff --git a/heat/engine/resources/openstack/neutron/sfc/port_pair_group.py b/heat/engine/resources/openstack/neutron/sfc/port_pair_group.py
index 688594b96..280aea75b 100644
--- a/heat/engine/resources/openstack/neutron/sfc/port_pair_group.py
+++ b/heat/engine/resources/openstack/neutron/sfc/port_pair_group.py
@@ -24,7 +24,7 @@ class PortPairGroup(neutron.NeutronResource):
Multiple port-pairs may be included in a port-pair-group to allow the
specification of a set of functionally equivalent Service Functions that
- can be be used for load distribution.
+ can be used for load distribution.
"""
support_status = support.SupportStatus(
diff --git a/heat/engine/resources/openstack/nova/server_network_mixin.py b/heat/engine/resources/openstack/nova/server_network_mixin.py
index c03514262..62d501994 100644
--- a/heat/engine/resources/openstack/nova/server_network_mixin.py
+++ b/heat/engine/resources/openstack/nova/server_network_mixin.py
@@ -65,7 +65,7 @@ class ServerNetworkMixin(object):
"/".join([self.NETWORKS, self.NETWORK_PORT]))
# if user only specifies network and floating ip, floating ip
- # can't be associated as the the neutron port isn't created/managed
+ # can't be associated as the neutron port isn't created/managed
# by heat
if floating_ip is not None:
if net_id is not None and port is None and subnet is None: