Fix spelling mistakes (comments only) (#25564)

Original Author : klemens <ka7@github.com>

Taking over previous PR as per
https://github.com/ansible/ansible/pull/23644#issuecomment-307334525

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
Abhijeet Kasurde
2017-06-12 12:25:19 +05:30
committed by John R Barker
parent 460d932aa8
commit b89cb95609
158 changed files with 202 additions and 201 deletions

View File

@@ -68,7 +68,7 @@ options:
subjectAltName:
required: false
description:
- SAN extention to attach to the certificate signing request
- SAN extension to attach to the certificate signing request
countryName:
required: false
aliases: [ 'C' ]
@@ -114,7 +114,7 @@ EXAMPLES = '''
privatekey_path: /etc/ssl/private/ansible.com.pem
commonName: www.ansible.com
# Generate an OpenSSL Certificate Signing Request with Subject informations
# Generate an OpenSSL Certificate Signing Request with Subject information
- openssl_csr:
path: /etc/ssl/csr/www.ansible.com.csr
privatekey_path: /etc/ssl/private/ansible.com.pem
@@ -253,7 +253,7 @@ class CertificateSigningRequest(object):
self.changed = False
def dump(self):
'''Serialize the object into a dictionnary.'''
'''Serialize the object into a dictionary.'''
result = {
'csr': self.path,

View File

@@ -182,7 +182,7 @@ class PrivateKey(object):
def dump(self):
"""Serialize the object into a dictionnary."""
"""Serialize the object into a dictionary."""
result = {
'size': self.size,

View File

@@ -53,7 +53,7 @@ options:
privatekey_path:
required: true
description:
- Path to the TLS/SSL private key from which to genereate the public key.
- Path to the TLS/SSL private key from which to generate the public key.
'''
EXAMPLES = '''
@@ -153,7 +153,7 @@ class PublicKey(object):
self.changed = False
def dump(self):
"""Serialize the object into a dictionnary."""
"""Serialize the object into a dictionary."""
result = {
'privatekey': self.privatekey_path,