summaryrefslogtreecommitdiff
path: root/docs/narr
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2015-02-07 02:39:30 -0600
committerMichael Merickel <michael@merickel.org>2015-02-07 02:39:30 -0600
commit04f7542941149010f31d42ed729d6317ffa06239 (patch)
treebc1934fa7d7b59b699d055dbcc57449d6e79242f /docs/narr
parent3279854b8ffc02593a604f84d0f72b8e7d4f24a8 (diff)
parentda5f5f9ea02c2c9830c7ae016547d2bedd0e0171 (diff)
downloadpyramid-04f7542941149010f31d42ed729d6317ffa06239.tar.gz
pyramid-04f7542941149010f31d42ed729d6317ffa06239.tar.bz2
pyramid-04f7542941149010f31d42ed729d6317ffa06239.zip
Merge branch 'fix.response-factory-docs'
Diffstat (limited to 'docs/narr')
-rw-r--r--docs/narr/hooks.rst9
1 files changed, 6 insertions, 3 deletions
diff --git a/docs/narr/hooks.rst b/docs/narr/hooks.rst
index 17cae2c67..4fd7670b9 100644
--- a/docs/narr/hooks.rst
+++ b/docs/narr/hooks.rst
@@ -364,9 +364,12 @@ Whenever :app:`Pyramid` returns a response from a view it creates a
object.
The factory that :app:`Pyramid` uses to create a response object instance can be
-changed by passing a ``response_factory`` argument to the constructor of the
-:term:`configurator`. This argument can be either a callable or a
-:term:`dotted Python name` representing a callable.
+changed by passing a :class:`pyramid.interfaces.IResponseFactory` argument to
+the constructor of the :term:`configurator`. This argument can be either a
+callable or a :term:`dotted Python name` representing a callable.
+
+The factory takes a single positional argument, which is a :term:`Request`
+object. The argument may be ``None``.
.. code-block:: python
:linenos: