You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2016/04/16 11:04:19 UTC

libcloud git commit: dns: correct spelling in update_zone() doc string

Repository: libcloud
Updated Branches:
  refs/heads/trunk f6ffaa557 -> 742d23ecd


dns: correct spelling in update_zone() doc string

"en" -> "an"

Closes #756

Signed-off-by: Tomaz Muraus <to...@tomaz.me>


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/742d23ec
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/742d23ec
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/742d23ec

Branch: refs/heads/trunk
Commit: 742d23ecd506b73dab1e0cb44b5e7566b71285b6
Parents: f6ffaa5
Author: Ken Dreyer <kt...@ktdreyer.com>
Authored: Sat Apr 16 00:47:38 2016 -0600
Committer: Tomaz Muraus <to...@tomaz.me>
Committed: Sat Apr 16 11:04:03 2016 +0200

----------------------------------------------------------------------
 libcloud/dns/base.py                 | 2 +-
 libcloud/dns/drivers/durabledns.py   | 2 +-
 libcloud/dns/drivers/pointdns.py     | 2 +-
 libcloud/dns/drivers/worldwidedns.py | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/742d23ec/libcloud/dns/base.py
----------------------------------------------------------------------
diff --git a/libcloud/dns/base.py b/libcloud/dns/base.py
index 6f7cb14..e963e2d 100644
--- a/libcloud/dns/base.py
+++ b/libcloud/dns/base.py
@@ -285,7 +285,7 @@ class DNSDriver(BaseDriver):
 
     def update_zone(self, zone, domain, type='master', ttl=None, extra=None):
         """
-        Update en existing zone.
+        Update an existing zone.
 
         :param zone: Zone to update.
         :type  zone: :class:`Zone`

http://git-wip-us.apache.org/repos/asf/libcloud/blob/742d23ec/libcloud/dns/drivers/durabledns.py
----------------------------------------------------------------------
diff --git a/libcloud/dns/drivers/durabledns.py b/libcloud/dns/drivers/durabledns.py
index 5d2fbe8..329db1e 100644
--- a/libcloud/dns/drivers/durabledns.py
+++ b/libcloud/dns/drivers/durabledns.py
@@ -397,7 +397,7 @@ class DurableDNSDriver(DNSDriver):
 
     def update_zone(self, zone, domain, type='master', ttl=None, extra=None):
         """
-        Update en existing zone.
+        Update an existing zone.
 
         :param zone: Zone to update.
         :type  zone: :class:`Zone`

http://git-wip-us.apache.org/repos/asf/libcloud/blob/742d23ec/libcloud/dns/drivers/pointdns.py
----------------------------------------------------------------------
diff --git a/libcloud/dns/drivers/pointdns.py b/libcloud/dns/drivers/pointdns.py
index 1523bb9..e9edb36 100644
--- a/libcloud/dns/drivers/pointdns.py
+++ b/libcloud/dns/drivers/pointdns.py
@@ -310,7 +310,7 @@ class PointDNSDriver(DNSDriver):
 
     def update_zone(self, zone, domain, type='master', ttl=None, extra=None):
         """
-        Update en existing zone.
+        Update an existing zone.
 
         :param zone: Zone to update.
         :type  zone: :class:`Zone`

http://git-wip-us.apache.org/repos/asf/libcloud/blob/742d23ec/libcloud/dns/drivers/worldwidedns.py
----------------------------------------------------------------------
diff --git a/libcloud/dns/drivers/worldwidedns.py b/libcloud/dns/drivers/worldwidedns.py
index 8b0f90c..f459e52 100644
--- a/libcloud/dns/drivers/worldwidedns.py
+++ b/libcloud/dns/drivers/worldwidedns.py
@@ -167,7 +167,7 @@ class WorldWideDNSDriver(DNSDriver):
     def update_zone(self, zone, domain, type='master', ttl=None, extra=None,
                     ex_raw=False):
         """
-        Update en existing zone.
+        Update an existing zone.
 
         :param zone: Zone to update.
         :type  zone: :class:`Zone`