summaryrefslogtreecommitdiff
path: root/heat/engine/resources
diff options
context:
space:
mode:
authorAlan <kaihongd@cn.ibm.com>2016-01-04 05:00:12 -0500
committerAlan <kaihongd@cn.ibm.com>2016-01-04 11:19:03 +0000
commite64c1943f1d9fe0f8e7042c55d954fc63473ca1f (patch)
tree20a5207ada8a6f5ebb424682c394d077c0d8d021 /heat/engine/resources
parentc540b9a82fed4cebbe9f41fcecd822ee6801c6a8 (diff)
downloadheat-e64c1943f1d9fe0f8e7042c55d954fc63473ca1f.tar.gz
Fix grammatical mistake, Changed character from "an" to "a" in below files:
models.py line 120:Represents an syncpoint domain.py line 27:is an realm with an identification string queue.py line 81:if an queue with the same test_resource_type.py line 65:Check for an known resource test_server.py line 444, 472, 499, 1169, 1300, 1335: create an server remote_client.py line 45:Returns an ssh connection install.sh line 22:Ubuntu has an lsb_release command Change-Id: Iab6fec86b9a3a9bef284bbc9069530313c570b39
Diffstat (limited to 'heat/engine/resources')
-rw-r--r--heat/engine/resources/openstack/designate/domain.py2
-rw-r--r--heat/engine/resources/openstack/zaqar/queue.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/heat/engine/resources/openstack/designate/domain.py b/heat/engine/resources/openstack/designate/domain.py
index 3832d5644..9bafa0745 100644
--- a/heat/engine/resources/openstack/designate/domain.py
+++ b/heat/engine/resources/openstack/designate/domain.py
@@ -24,7 +24,7 @@ class DesignateDomain(resource.Resource):
"""Heat Template Resource for Designate Domain.
Designate provides DNS-as-a-Service services for OpenStack. So, domain
- is an realm with an identification string, unique in DNS.
+ is a realm with an identification string, unique in DNS.
"""
support_status = support.SupportStatus(
diff --git a/heat/engine/resources/openstack/zaqar/queue.py b/heat/engine/resources/openstack/zaqar/queue.py
index 07c4f8862..f135c0772 100644
--- a/heat/engine/resources/openstack/zaqar/queue.py
+++ b/heat/engine/resources/openstack/zaqar/queue.py
@@ -78,7 +78,7 @@ class ZaqarQueue(resource.Resource):
"""Create a zaqar message queue."""
queue_name = self.physical_resource_name()
queue = self.client().queue(queue_name, auto_create=False)
- # Zaqar client doesn't report an error if an queue with the same
+ # Zaqar client doesn't report an error if a queue with the same
# id/name already exists, which can cause issue with stack update.
if queue.exists():
raise exception.Error(_('Message queue %s already exists.')