diff options
| author | Steve Piercy <web@stevepiercy.com> | 2021-06-19 01:29:45 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2021-06-19 01:31:05 -0700 |
| commit | 0e4a1e3773e383ae756164e2cb5f32592d63e131 (patch) | |
| tree | dcb1c994887ef11c024c1dacd782bb79db8081eb /docs/narr/webob.rst | |
| parent | 8061fce297cc7117d3e6e2b39e47512c7db2904f (diff) | |
| download | pyramid-0e4a1e3773e383ae756164e2cb5f32592d63e131.tar.gz pyramid-0e4a1e3773e383ae756164e2cb5f32592d63e131.tar.bz2 pyramid-0e4a1e3773e383ae756164e2cb5f32592d63e131.zip | |
Fix API documentation links to webob, and rename the objects with their full and correct namespace
Diffstat (limited to 'docs/narr/webob.rst')
| -rw-r--r-- | docs/narr/webob.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/narr/webob.rst b/docs/narr/webob.rst index e0524583f..61b64b480 100644 --- a/docs/narr/webob.rst +++ b/docs/narr/webob.rst @@ -14,10 +14,10 @@ Request and Response Objects :term:`request` and :term:`response` object implementations. The :term:`request` object that is passed to a :app:`Pyramid` :term:`view` is an instance of the :class:`pyramid.request.Request` class, which is a subclass of -:class:`webob.Request`. The :term:`response` returned from a :app:`Pyramid` +:class:`webob.request.Request`. The :term:`response` returned from a :app:`Pyramid` :term:`view` :term:`renderer` is an instance of the :mod:`pyramid.response.Response` class, which is a subclass of the -:class:`webob.Response` class. Users can also return an instance of +:class:`webob.response.Response` class. Users can also return an instance of :class:`pyramid.response.Response` directly from a view as necessary. WebOb is a project separate from :app:`Pyramid` with a separate set of authors @@ -364,7 +364,7 @@ Response The :app:`Pyramid` response object can be imported as :class:`pyramid.response.Response`. This class is a subclass of the -``webob.Response`` class. The subclass does not add or change any +``webob.reponse.Response`` class. The subclass does not add or change any functionality, so the WebOb Response documentation will be completely relevant for this class as well. |
