Misc typo fixes (#49816)

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
Abhijeet Kasurde 2018-12-14 15:12:58 +05:30 committed by GitHub
commit 013c42b14f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
24 changed files with 37 additions and 37 deletions

View file

@ -341,7 +341,7 @@ instances:
type: string
sample: "2099-12-31T15:59Z"
gpu:
description: The attribution of instane GPU.
description: The attribution of instance GPU.
returned: always
type: complex
contains:

View file

@ -170,7 +170,7 @@ instances:
type: string
sample: "2099-12-31T15:59Z"
gpu:
description: The attribution of instane GPU.
description: The attribution of instance GPU.
returned: always
type: complex
contains:

View file

@ -270,7 +270,7 @@ def configure_api(client, api_data=None, api_id=None, mode="overwrite"):
@AWSRetry.backoff(**retry_params)
def create_deployment(client, api_id=None, stage=None, description=None):
# we can also get None as an argument so we don't do this as a defult
# we can also get None as an argument so we don't do this as a default
return client.create_deployment(restApiId=api_id, stageName=stage, description=description)

View file

@ -651,7 +651,7 @@ custom_error_responses:
type: complex
contains:
error_caching_min_ttl:
description: Mininum time to cache this error response
description: Minimum time to cache this error response
returned: always
type: int
sample: 300

View file

@ -36,7 +36,7 @@ EXAMPLES = '''
RETURN = '''
log_groups:
description: Return the list of complex objetcs representing log groups
description: Return the list of complex objects representing log groups
returned: success
type: complex
contains:

View file

@ -74,7 +74,7 @@ options:
type: str
origin_path:
description:
- A directory path on the origin that CDN can use to retreive content from.
- A directory path on the origin that CDN can use to retrieve content from.
type: str
content_types_to_compress:
description:

View file

@ -35,7 +35,7 @@ options:
- It can be a virtual machine, OS disk blob URI, managed OS disk, or OS snapshot.
- Each type of source except for blob URI can be given as resource id, name or a dict contains C(resource_group), C(name) and C(types).
- If source type is blob URI, the source should be the full URI of the blob in string type.
- If you specify the C(type) in a dict, acceptable value constains C(disks), C(virtual_machines) and C(snapshots).
- If you specify the C(type) in a dict, acceptable value contains C(disks), C(virtual_machines) and C(snapshots).
type: raw
required: true
data_disk_sources:
@ -237,7 +237,7 @@ class AzureRMImage(AzureRMModuleBase):
elif isinstance(source, str):
tokenize = parse_resource_id(source)
else:
self.fail("source parameter sould be in type string or dictionary")
self.fail("source parameter should be in type string or dictionary")
if tokenize.get('type') == 'disks':
disk = format_resource_id(tokenize['name'],
tokenize.get('subscription_id') or self.subscription_id,

View file

@ -408,7 +408,7 @@ def nic_to_dict(nic):
internal_fqdn=nic.dns_settings.internal_fqdn
),
ip_configurations=ip_configurations,
ip_configuration=ip_configurations[0] if len(ip_configurations) == 1 else None, # for compatiable issue, keep this field
ip_configuration=ip_configurations[0] if len(ip_configurations) == 1 else None, # for compatible issue, keep this field
mac_address=nic.mac_address,
enable_ip_forwarding=nic.enable_ip_forwarding,
provisioning_state=nic.provisioning_state,
@ -512,7 +512,7 @@ class AzureRMNetworkInterface(AzureRMModuleBase):
self.security_group = self.parse_resource_to_dict(self.security_group or self.name)
if self.state == 'present' and not self.ip_configurations:
# construct the ip_configurations array for compatiable
# construct the ip_configurations array for compatible
self.deprecate('Setting ip_configuration flatten is deprecated and will be removed.'
' Using ip_configurations list to define the ip configuration', version='2.9')
self.ip_configurations = [

View file

@ -112,7 +112,7 @@ options:
- Dict of tenant settings.
state:
description:
- Assert the state of the redis cahce.
- Assert the state of the redis cache.
- Use 'present' to create or update a redis cache and 'absent' to delete it.
default: present
choices:

View file

@ -57,7 +57,7 @@ EXAMPLES = '''
resource_group: TestRG
profile_name: Testing
- name: Get specific endpoint of a Traffic Manager profie
- name: Get specific endpoint of a Traffic Manager profile
azure_rm_trafficmanager_facts:
resource_group: TestRG
profile_name: Testing

View file

@ -33,7 +33,7 @@ options:
- Limit results by resource group.
return_publish_profile:
description:
- Indicate wheather to return publishing profile of the web app.
- Indicate whether to return publishing profile of the web app.
default: False
type: bool
tags:
@ -127,14 +127,14 @@ webapps:
description: Outbound ip address of the web app.
type: str
ftp_publish_url:
description: Publishing url of the web app when depeloyment type is FTP.
description: Publishing url of the web app when deployment type is FTP.
type: str
sample: ftp://xxxx.ftp.azurewebsites.windows.net
state:
description: State of the web app. eg. running.
type: str
publishing_username:
description: Publishing profle user name.
description: Publishing profile user name.
returned: only when I(return_publish_profile) is True.
type: str
publishing_password:

View file

@ -363,7 +363,7 @@ def main():
target_state = module.params['state']
server = AnsibleCloudscaleServer(module)
# The server could be in a changeing or error state.
# The server could be in a changing or error state.
# Wait for one of the allowed states before doing anything.
# If an allowed state can't be reached, this module fails.
if server.info['state'] not in ALLOWED_STATES:

View file

@ -162,7 +162,7 @@ def get_global_forwarding_rule(client, name, project_id=None):
"""
Get a Global Forwarding Rule from GCP.
:param client: An initialized GCE Compute Disovery resource.
:param client: An initialized GCE Compute Discovery resource.
:type client: :class: `googleapiclient.discovery.Resource`
:param name: Name of the Global Forwarding Rule.
@ -186,7 +186,7 @@ def create_global_forwarding_rule(client, params, project_id):
"""
Create a new Global Forwarding Rule.
:param client: An initialized GCE Compute Disovery resource.
:param client: An initialized GCE Compute Discovery resource.
:type client: :class: `googleapiclient.discovery.Resource`
:param params: Dictionary of arguments from AnsibleModule.
@ -239,7 +239,7 @@ def update_global_forwarding_rule(client, forwarding_rule, params, name, project
If the forwarding_rule has not changed, the update will not occur.
:param client: An initialized GCE Compute Disovery resource.
:param client: An initialized GCE Compute Discovery resource.
:type client: :class: `googleapiclient.discovery.Resource`
:param forwarding_rule: Name of the Target Proxy.

View file

@ -244,7 +244,7 @@ def get_healthcheck(client, name, project_id=None, resource_type='HTTP'):
"""
Get a Healthcheck from GCP.
:param client: An initialized GCE Compute Disovery resource.
:param client: An initialized GCE Compute Discovery resource.
:type client: :class: `googleapiclient.discovery.Resource`
:param name: Name of the Url Map.
@ -269,7 +269,7 @@ def create_healthcheck(client, params, project_id, resource_type='HTTP'):
"""
Create a new Healthcheck.
:param client: An initialized GCE Compute Disovery resource.
:param client: An initialized GCE Compute Discovery resource.
:type client: :class: `googleapiclient.discovery.Resource`
:param params: Dictionary of arguments from AnsibleModule.
@ -297,7 +297,7 @@ def delete_healthcheck(client, name, project_id, resource_type='HTTP'):
"""
Delete a Healthcheck.
:param client: An initialized GCE Compute Disover resource.
:param client: An initialized GCE Compute Discovery resource.
:type client: :class: `googleapiclient.discovery.Resource`
:param name: Name of the Url Map.
@ -326,7 +326,7 @@ def update_healthcheck(client, healthcheck, params, name, project_id,
If the healthcheck has not changed, the update will not occur.
:param client: An initialized GCE Compute Disovery resource.
:param client: An initialized GCE Compute Discovery resource.
:type client: :class: `googleapiclient.discovery.Resource`
:param healthcheck: Name of the Url Map.

View file

@ -34,7 +34,7 @@ options:
required: yes
subscription:
description:
- Dictionary containing a subscripton name associated with a topic (required), along with optional ack_deadline, push_endpoint and pull.
- Dictionary containing a subscription name associated with a topic (required), along with optional ack_deadline, push_endpoint and pull.
For pulling from a subscription, message_ack (bool), max_messages (int) and return_immediate are available as subfields.
See subfields name, push_endpoint and ack_deadline for more information.
name:

View file

@ -27,7 +27,7 @@ options:
- Filter facts
choices: [ status, result ]
notes:
- See http://cloudinit.readthedocs.io/ for more information abount cloud-init.
- See http://cloudinit.readthedocs.io/ for more information about cloud-init.
'''
EXAMPLES = '''