]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
spelling: expiration
authorJosh Soref <jsoref@users.noreply.github.com>
Sun, 13 Jun 2021 21:33:04 +0000 (17:33 -0400)
committerWillem Toorop <willem@nlnetlabs.nl>
Mon, 14 Jun 2021 09:29:16 +0000 (11:29 +0200)
Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
contrib/python/ldns_key.i
contrib/python/ldns_rr.i
examples/ldns-rrsig.1
ldns/keys.h
ldns/rr_functions.h

index f95b030fd4675d2c25f10c2e2de0b3c4a658190d..57775f2cfef74c728f27f93302646e62b5db8322 100644 (file)
@@ -204,7 +204,7 @@ This class can contains all types of keys that are used in DNSSEC. Mostly used t
         def expiration(self):
             """return the key's expiration date
                
-               :returns: (uint32_t) the experiration date
+               :returns: (uint32_t) the expiration date
             """
             return _ldns.ldns_key_expiration(self)
             #parameters: const ldns_key *,
index cd2c3c1f08d8eaeb3d50489c5e69f89917e22e30..42406d6c8a55943634e699aa1a7ec27e8b226cda 100644 (file)
@@ -1424,9 +1424,9 @@ to create :class:`ldns_rr` instances.
 
         def rrsig_set_expiration(self, f):
             """
-               Sets the expireation date of a LDNS_RR_TYPE_RRSIG rr.
+               Sets the expiration date of a LDNS_RR_TYPE_RRSIG rr.
                
-               :param f: The expireation date to set.
+               :param f: The expiration date to set.
                :type f: :class:`ldns_rdf`
                :throws TypeError: when `f` of non-:class:`ldns_rdf` type.
                :return: (bool) True on success, False otherwise.
index 3aee863e057d42736626c34e76190fd23e154268..d64b9f3ba4d907b6d93c39cf675c519244f05667 100644 (file)
@@ -13,7 +13,7 @@ readable form
 \fBldns-rrsig\fR is used to print the expiration and inception date of
 a RRSIG. The first argument is a domain name. \fBldns-rrsig\fR will
 query the authoritative servers for that domain to get a list of RRSIGs.
-It will then print out the inception and experiration dates for the RRSIG
+It will then print out the inception and expiration dates for the RRSIG
 covering the SOA record.
 .PP
 If the second argument \fBtype\fR is given the RRSIG covering that type will be shown.
index 826f876f992f2dc0d7bdb7093669ae7599aa02cc..81a0b46e70555a2fa967403e3efd272072102f1e 100644 (file)
@@ -531,7 +531,7 @@ uint32_t ldns_key_inception(const ldns_key *k);
 /**
  * return the key's expiration date
  * \param[in] k the key
- * \return the experiration date
+ * \return the expiration date
  */
 uint32_t ldns_key_expiration(const ldns_key *k);
 /**
index 09a28dd7f8796b2a9351dbb54910c9f1aee1992b..5a84d40b1358ea42deb68b36fef584bcc22a6efc 100644 (file)
@@ -121,9 +121,9 @@ bool ldns_rr_rrsig_set_origttl(ldns_rr *r, ldns_rdf *f);
  */
 ldns_rdf* ldns_rr_rrsig_expiration(const ldns_rr *r);
 /**
- * sets the expireation date of a LDNS_RR_TYPE_RRSIG rr
+ * sets the expiration date of a LDNS_RR_TYPE_RRSIG rr
  * \param[in] r the rr to use
- * \param[in] f the expireation date to set
+ * \param[in] f the expiration date to set
  * \return true on success, false otherwise
  */
 bool ldns_rr_rrsig_set_expiration(ldns_rr *r, ldns_rdf *f);