From: hgangwx Date: Mon, 28 Dec 2015 07:22:04 +0000 (+0800) Subject: Wrong usage of "an" X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=0995ebda7fa651e02241dff94fd1a495ba326fd8;p=openstack-build%2Fneutron-build.git Wrong usage of "an" Wrong usage of "an" in the messages: "Gets called when an port gets added to or removed" "Create an command to add an OVS bridge" Should be: "Gets called when a port gets added to or removed" "Create a command to add an OVS bridge" Totally 2 occurrences in Neutron base code. Change-Id: I40756ed3eff7d2f672b2e0203b59ea5b8ff224c3 --- diff --git a/neutron/agent/firewall.py b/neutron/agent/firewall.py index 04a327b21..d052091fd 100644 --- a/neutron/agent/firewall.py +++ b/neutron/agent/firewall.py @@ -77,7 +77,7 @@ class FirewallDriver(object): def update_port_filter(self, port): """Refresh security group rules from data store - Gets called when an port gets added to or removed from + Gets called when a port gets added to or removed from the security group the port is a member of or if the group gains or looses a rule. """ diff --git a/neutron/agent/ovsdb/api.py b/neutron/agent/ovsdb/api.py index 23ae9b4ba..5a2178228 100644 --- a/neutron/agent/ovsdb/api.py +++ b/neutron/agent/ovsdb/api.py @@ -102,7 +102,7 @@ class API(object): @abc.abstractmethod def add_br(self, name, may_exist=True, datapath_type=None): - """Create an command to add an OVS bridge + """Create a command to add an OVS bridge :param name: The name of the bridge :type name: string