Skip to content

Commit

Permalink
Docstring typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Sep 21, 2015
1 parent 5cec571 commit faee1ec
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions gcloud/dns/resource_record_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,15 @@ def __init__(self, name, record_type, ttl, rrdatas, zone):

@classmethod
def from_api_repr(cls, resource, zone):
"""Factory: construct a zone given its API representation
"""Factory: construct a record set given its API representation
:type resource: dict
:param resource: zone resource representation returned from the API
:param resource: record sets representation returned from the API
:type zone: :class:`gcloud.dns.zone.ManagedZone`
:param zone: A zone which holds one or more record sets.
:rtype: :class:`gcloud.dns.zone.ResourceRecordSets`
:rtype: :class:`gcloud.dns.zone.ResourceRecordSet`
:returns: RRS parsed from ``resource``.
"""
name = resource['name']
Expand Down

0 comments on commit faee1ec

Please sign in to comment.