diff options
| author | Peter Stachowski <peter@tesora.com> | 2014-10-28 09:49:28 -0400 |
|---|---|---|
| committer | Peter Stachowski <peter@tesora.com> | 2014-10-28 09:49:28 -0400 |
| commit | fbe2b0a2a8f2892fc117eb7d7fc1c65fec4c501d (patch) | |
| tree | e42cafa23027495967e8fe74a71b2accfae1107a /doc | |
| parent | d596428b413764a14672409875efb9a130261e90 (diff) | |
| download | python-troveclient-fbe2b0a2a8f2892fc117eb7d7fc1c65fec4c501d.tar.gz | |
Fixed typo in doc/source
There was a typo in the Authentication section of the usage.rst
file.
This has been fixed, along with some lining up of comments in the
test code to make it easier to read.
Change-Id: I342a286055246beaeadc7e763d3b75bd17c32a60
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/source/usage.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/usage.rst b/doc/source/usage.rst index d325c22..0e7edfc 100644 --- a/doc/source/usage.rst +++ b/doc/source/usage.rst @@ -75,7 +75,7 @@ call to the constructor. auth_url=AUTH_URL) client.authenticate() -The default authentication strategy assumes a Keystone complaint auth system. +The default authentication strategy assumes a Keystone compliant auth system. For Rackspace auth, use the keyword argument "auth_strategy='rax'". @@ -119,8 +119,8 @@ The following example creates a 512 MB instance with a 1 GB volume: flavor_id = "1" volume = {'size':1} databases = [{"name": "my_db", - "character_set": "latin2", # This and the next field are - "collate": "latin2_general_ci"}] # optional. + "character_set": "latin2", # These two fields + "collate": "latin2_general_ci"}] # are optional. users = [{"name": "jsmith", "password": "12345", "databases": [{"name": "my_db"}] }] |
