fixed some typos and comments, no code change

This commit is contained in:
David Kennedy 2023-12-27 11:32:47 -05:00
parent 5ae1d30ec7
commit 35d1b2f951
No known key found for this signature in database
GPG key ID: 6528A5386E66B96B

View file

@ -202,7 +202,7 @@ class Domain(TimeStampedModel, DomainHelper):
return self._get_property("cr_date")
@creation_date.setter # type: ignore
def creation_date(self, ex_date: date):
def creation_date(self, cr_date: date):
"""
Direct setting of the creation date in the registry is not implemented.
@ -1651,7 +1651,7 @@ class Domain(TimeStampedModel, DomainHelper):
return dnssec_data
def _update_hosts_and_contacts(self, cleaned, fetch_hosts, fetch_contacts):
"""Capture and store old hosts and contacts from cache if the don't exist"""
"""Capture and store old hosts and contacts from cache if they don't exist"""
old_cache_hosts = self._cache.get("hosts")
old_cache_contacts = self._cache.get("contacts")