Correct the namespace for Server resource

(this also removes a stray incomplete sentence)

Change-Id: I00de58befa14c6a9d92dcfb58f7bea1285beeab6
This commit is contained in:
Brian Curtin
2014-11-21 13:46:50 -06:00
parent 538f826014
commit cc5de0785e

View File

@@ -125,8 +125,6 @@ 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.
For more information, see
Authenticator
^^^^^^^^^^^^^
@@ -158,8 +156,8 @@ Resource
The :class:`openstack.resource.Resource` base class is the building block
of any service implementation. ``Resource`` objects correspond to the
resources each service's REST API works with, so the
:class:`openstack.compute.v2.Server` subclass maps to the compute service's
``https://openstack:1234/v2/servers`` resource.
:class:`openstack.compute.v2.server.Server` subclass maps to the compute
service's ``https://openstack:1234/v2/servers`` resource.
The base ``Resource`` contains methods to support the typical
`CRUD <http://en.wikipedia.org/wiki/Create,_read,_update_and_delete>`_