Minor documentation fixes/tweaks (#597)

Mostly typos, grammar errors and inconsistent indentation in code
examples.

Some errors detected using Topy (https://github.com/intgr/topy), all
changes verified by hand.
This commit is contained in:
Marti Raudsepp
2016-12-14 19:29:04 +02:00
committed by kevgliss
parent fbcedc2fa0
commit 71ddbb409c
47 changed files with 109 additions and 109 deletions

View File

@ -1,5 +1,5 @@
"""
.. module: lemur.bases.destination
.. module: lemur.plugins.bases.destination
:platform: Unix
:copyright: (c) 2015 by Netflix Inc., see AUTHORS for more
:license: Apache, see LICENSE for more details.

View File

@ -1,5 +1,5 @@
"""
.. module: lemur.bases.export
.. module: lemur.plugins.bases.export
:platform: Unix
:copyright: (c) 2015 by Netflix Inc., see AUTHORS for more
:license: Apache, see LICENSE for more details.

View File

@ -1,5 +1,5 @@
"""
.. module: lemur.bases.issuer
.. module: lemur.plugins.bases.issuer
:platform: Unix
:copyright: (c) 2015 by Netflix Inc., see AUTHORS for more
:license: Apache, see LICENSE for more details.

View File

@ -1,5 +1,5 @@
"""
.. module: lemur.bases.metric
.. module: lemur.plugins.bases.metric
:platform: Unix
:copyright: (c) 2015 by Netflix Inc., see AUTHORS for more
:license: Apache, see LICENSE for more details.

View File

@ -1,5 +1,5 @@
"""
.. module: lemur.bases.notification
.. module: lemur.plugins.bases.notification
:platform: Unix
:copyright: (c) 2015 by Netflix Inc., see AUTHORS for more
:license: Apache, see LICENSE for more details.

View File

@ -1,5 +1,5 @@
"""
.. module: lemur.bases.source
.. module: lemur.plugins.bases.source
:platform: Unix
:copyright: (c) 2015 by Netflix Inc., see AUTHORS for more
:license: Apache, see LICENSE for more details.

View File

@ -1,7 +1,7 @@
"""
.. module: lemur.plugins.lemur_acme.acme
.. module: lemur.plugins.lemur_acme.plugin
:platform: Unix
:synopsis: This module is responsible for communicating with a ACME CA.
:synopsis: This module is responsible for communicating with an ACME CA.
:copyright: (c) 2015 by Netflix Inc., see AUTHORS for more
:license: Apache, see LICENSE for more details.
@ -179,7 +179,7 @@ class ACMEIssuerPlugin(IssuerPlugin):
def create_certificate(self, csr, issuer_options):
"""
Creates a ACME certificate.
Creates an ACME certificate.
:param csr:
:param issuer_options:

View File

@ -1,5 +1,5 @@
"""
.. module: lemur.plugins.lemur_aws.elb
.. module: lemur.plugins.lemur_aws.ec2
:synopsis: Module contains some often used and helpful classes that
are used to deal with ELBs

View File

@ -1,5 +1,5 @@
"""
.. module: lemur.plugins.lemur_aws.aws
.. module: lemur.plugins.lemur_aws.plugin
:platform: Unix
:copyright: (c) 2015 by Netflix Inc., see AUTHORS for more
:license: Apache, see LICENSE for more details.

View File

@ -1,5 +1,5 @@
"""
.. module: lemur.common.services.aws.sts
.. module: lemur.plugins.lemur_aws.sts
:platform: Unix
:copyright: (c) 2015 by Netflix Inc., see AUTHORS for more
:license: Apache, see LICENSE for more details.

View File

@ -1,5 +1,5 @@
"""
.. module: lemur.plugins.lemur_digicert.digicert
.. module: lemur.plugins.lemur_digicert.plugin
:platform: Unix
:synopsis: This module is responsible for communicating with the DigiCert '
Advanced API.

View File

@ -1,5 +1,5 @@
"""
.. module: lemur.plugins.lemur_kubernetes.aws
.. module: lemur.plugins.lemur_kubernetes.plugin
:platform: Unix
:copyright: (c) 2015 by Netflix Inc., see AUTHORS for more
:license: Apache, see LICENSE for more details.

View File

@ -1,5 +1,5 @@
"""
.. module: lemur.plugins.lemur_slack.slack
.. module: lemur.plugins.lemur_slack.plugin
:platform: Unix
:copyright: (c) 2015 by Netflix Inc., see AUTHORS for more
:license: Apache, see LICENSE for more details.

View File

@ -1,5 +1,5 @@
"""
.. module: lemur.plugins.lemur_verisign.verisign
.. module: lemur.plugins.lemur_verisign.plugin
:platform: Unix
:synopsis: This module is responsible for communicating with the VeriSign VICE 2.0 API.
:copyright: (c) 2015 by Netflix Inc., see AUTHORS for more
@ -196,7 +196,7 @@ class VerisignIssuerPlugin(IssuerPlugin):
def get_available_units(self):
"""
Uses the Verisign to fetch the number of available unit's left. This can be used to get tabs
Uses the Verisign to fetch the number of available units left. This can be used to get tabs
on the number of certificates that can be issued.
:return:

View File

@ -79,7 +79,7 @@ class PluginsList(AuthenticatedResource):
class Plugins(AuthenticatedResource):
""" Defines the the 'plugins' endpoint """
""" Defines the 'plugins' endpoint """
def __init__(self):
super(Plugins, self).__init__()