aboutsummaryrefslogtreecommitdiff
path: root/contrib/python/docs/source/examples/example8.rst
diff options
context:
space:
mode:
authorPierre Pronchery <pierre@freebsdfoundation.org>2023-05-04 21:51:47 +0000
committerEd Maste <emaste@FreeBSD.org>2023-05-05 15:12:07 +0000
commitcf3e3d5bd0a1fae39c74c7db5a4e8b10732d0766 (patch)
tree4c48b81a8fc4921e6e584787f31f0b80af5bcf32 /contrib/python/docs/source/examples/example8.rst
parentc6342fe2e90510d8d2296423f2ca92818a7b3d18 (diff)
Diffstat (limited to 'contrib/python/docs/source/examples/example8.rst')
-rw-r--r--contrib/python/docs/source/examples/example8.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/python/docs/source/examples/example8.rst b/contrib/python/docs/source/examples/example8.rst
index 6fc550a86045..2cd1daf2dd47 100644
--- a/contrib/python/docs/source/examples/example8.rst
+++ b/contrib/python/docs/source/examples/example8.rst
@@ -10,8 +10,8 @@ In order to be able sign a zone file, you have to generate a key-pair using ``ld
Signing consists of three steps
-1. In the first step, the content of a zone file is readed and parsed. This can be done using :class:`ldns.ldns_zone` class.
+1. In the first step, the content of a zone file is read and parsed. This can be done using :class:`ldns.ldns_zone` class.
-2. In the second step, the private and public key is readed and public key is inserted into zone (as DNSKEY).
+2. In the second step, the private and public key is read and public key is inserted into zone (as DNSKEY).
-3. In the last step, the DNSSEC zone instace is created and all the RRs from zone file are copied here. Then, all the records are signed using :meth:`ldns.ldns_zone.sign` method. If the signing was successfull, the content of DNSSEC zone is written to a file.
+3. In the last step, the DNSSEC zone instance is created and all the RRs from zone file are copied here. Then, all the records are signed using :meth:`ldns.ldns_zone.sign` method. If the signing was successful, the content of DNSSEC zone is written to a file.