Merge "Remove some mentions to preferences from docs"

This commit is contained in:
Jenkins 2015-05-21 16:22:41 +00:00 committed by Gerrit Code Review
commit ccc368881d
3 changed files with 5 additions and 5 deletions

View File

@ -9,7 +9,7 @@ Session
-------
The :class:`openstack.session.Session` manages an authenticator,
transport, and user preferences. It exposes methods corresponding to
transport, and user profile. It exposes methods corresponding to
HTTP verbs, and injects your authentication token into a request,
determines any service preferences callers may have set, gets the endpoint
from the authenticator, and sends the request out through the transport.

View File

@ -50,7 +50,7 @@ Connection Interface
********************
A *Connection* instance maintains your session, authentication, transport,
and preferences, providing you with a set of higher-level interfaces to work
and profile, providing you with a set of higher-level interfaces to work
with OpenStack services.
.. toctree::
@ -60,7 +60,7 @@ with OpenStack services.
profile
Once you have a *Connection* instance, the following services may be exposed
to you. Your user preferences determine the full set of exposed services,
to you. Your user profile determine the full set of exposed services,
but listed below are the ones provided by this SDK by default.
.. toctree::

View File

@ -10,7 +10,7 @@ To use python-openstacksdk in a project::
from openstack import connection
from openstack import profile
# First, specify your preferences
# First, specify your profile
prof = profile.Profile()
prof.set_region('network', 'zion')
@ -23,7 +23,7 @@ To use python-openstacksdk in a project::
}
# Third, create a connection
conn = connection.Connection(preference=prof, **auth_args)
conn = connection.Connection(profile=prof, **auth_args)
# Finally, access your desired services
network = conn.network.find_network("matrix")