summaryrefslogtreecommitdiff
path: root/heat/engine/resources
diff options
context:
space:
mode:
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.')