summaryrefslogtreecommitdiff
path: root/docs/narr/zca.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-01-27 23:06:55 -0500
committerChris McDonough <chrism@plope.com>2011-01-27 23:06:55 -0500
commit70acd25f40f32fc6cbb3b5d38a695b8982b52a31 (patch)
treeecaee199a36054a3664c39a7955cb441aaf6503d /docs/narr/zca.rst
parent45c45f3ba6b688c988957056cb2c49883329dfe5 (diff)
downloadpyramid-70acd25f40f32fc6cbb3b5d38a695b8982b52a31.tar.gz
pyramid-70acd25f40f32fc6cbb3b5d38a695b8982b52a31.tar.bz2
pyramid-70acd25f40f32fc6cbb3b5d38a695b8982b52a31.zip
module name contractions
Diffstat (limited to 'docs/narr/zca.rst')
-rw-r--r--docs/narr/zca.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/narr/zca.rst b/docs/narr/zca.rst
index 78a7b0b75..fcab0653e 100644
--- a/docs/narr/zca.rst
+++ b/docs/narr/zca.rst
@@ -171,7 +171,7 @@ when a :term:`Configurator` constructor is called, or when a
During a request, the application registry created by the Configurator
is "made current". This means calls to
-:func:`pyramid.threadlocal.get_current_registry` in the thread
+:func:`~pyramid.threadlocal.get_current_registry` in the thread
handling the request will return the component registry associated
with the application.
@@ -184,7 +184,7 @@ always return the global ZCA registry (the one in
To "fix" this and make the ZCA global APIs use the "current" BFG
registry, you need to call
-:meth:`pyramid.config.Configurator.hook_zca` within your
+:meth:`~pyramid.config.Configurator.hook_zca` within your
setup code. For example:
.. code-block:: python