Merge "Fix duplicated words issue like "can be be used""

This commit is contained in:
Zuul 2021-03-11 21:19:08 +00:00 committed by Gerrit Code Review
commit 4d07bb7914
3 changed files with 3 additions and 3 deletions

View File

@ -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:

View File

@ -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(

View File

@ -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: