[doc] fix 5 typos

tweek        => tweak
adminstrator => administrator
mulitple     => multiple
definied     => defined (2-locations)

Change-Id: Ibe2c04e1b225515f7a6c83b5a4a8d91e8385140a
This commit is contained in:
Atsushi SAKAI 2016-04-28 20:34:23 +09:00
parent b256cae8e2
commit 340b7e9404
3 changed files with 5 additions and 5 deletions

View File

@ -353,7 +353,7 @@ be used and interpreted by nova.
]
}
- **Special keys are used to tweek the query**
- **Special keys are used to tweak the query**
``changes-since`` returns instances updated after the given time,
``deleted`` return (or exclude) deleted instances and ``soft_deleted``
modify behavior of 'deleted' to either include or exclude instances whose

View File

@ -988,7 +988,7 @@ forced_down:
type: boolean
description: |
Whether or not this service was forced down manually by an
adminstrator. This value is useful to know that some 3rd party has
administrator. This value is useful to know that some 3rd party has
verified the service should be marked down.
forceDelete:
description: |
@ -1463,7 +1463,7 @@ net_id_1:
type: string
networks:
description: |
A ``networks`` object. Required parameter when there are mulitple networks defined
A ``networks`` object. Required parameter when there are multiple networks defined
for the tenant. When you do not specify the networks parameter, the server attaches
to the only network created for the current tenant. Optionally, you can create
one or more NICs on the server. To provision the server instance with a NIC for

View File

@ -63,7 +63,7 @@ A very basic skeleton of a v2.1 plugin can be seen `here in the unittests <http:
# update -> PUT
# create -> POST
# show -> GET
# If a method is not definied a request to it will be a 404 response
# If a method is not defined a request to it will be a 404 response
# It is also possible to define support for further responses
# See `servers.py <http://git.openstack.org/cgit/openstack/nova/tree/nova/nova/api/openstack/compute/servers.py>`_.
@ -77,7 +77,7 @@ A very basic skeleton of a v2.1 plugin can be seen `here in the unittests <http:
version = 1
# Both get_resources and get_controller_extensions must always
# be definied by can return an empty array
# be defined by can return an empty array
def get_resources(self):
resource = extensions.ResourceExtension('test', BasicController())
return [resource]