summaryrefslogtreecommitdiff
path: root/docs/narr
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2013-10-02 17:47:17 -0400
committerChris McDonough <chrism@plope.com>2013-10-02 17:47:17 -0400
commitab2fedf7adaec0a56a69beed35312c88d7961c6c (patch)
tree83a49d859af4dca42e83c2397599a0b9de154b72 /docs/narr
parent4122733091d0204b22d7acedfdf985caed17f93f (diff)
downloadpyramid-ab2fedf7adaec0a56a69beed35312c88d7961c6c.tar.gz
pyramid-ab2fedf7adaec0a56a69beed35312c88d7961c6c.tar.bz2
pyramid-ab2fedf7adaec0a56a69beed35312c88d7961c6c.zip
fix the docs build and get rid of stray references to Beaker
Diffstat (limited to 'docs/narr')
-rw-r--r--docs/narr/project.rst2
-rw-r--r--docs/narr/sessions.rst8
2 files changed, 5 insertions, 5 deletions
diff --git a/docs/narr/project.rst b/docs/narr/project.rst
index bfd00d3a0..9451f41b1 100644
--- a/docs/narr/project.rst
+++ b/docs/narr/project.rst
@@ -977,7 +977,7 @@ named ``views`` instead of within a single ``views.py`` file, you might:
- *Move* the existing ``views.py`` file to a file inside the new ``views``
directory named, say, ``blog.py``. Because the ``templates`` directory
remains in the ``myproject`` package, the template :term:`asset
- specification`s in ``blog.py`` must now be fully qualified with the
+ specification` values in ``blog.py`` must now be fully qualified with the
project's package name (``myproject:templates/blog.pt``).
You can then continue to add view callable functions to the ``blog.py``
diff --git a/docs/narr/sessions.rst b/docs/narr/sessions.rst
index f4da5d82a..649d22bd2 100644
--- a/docs/narr/sessions.rst
+++ b/docs/narr/sessions.rst
@@ -159,10 +159,10 @@ Some gotchas:
Using Alternate Session Factories
---------------------------------
-At the time of this writing, exactly one project-endorsed alternate session
-factory exists named``pyramid_redis_sessions``. It can be downloaded from PyPI.
-It uses Redis as a backend. It is the recommended persistent session solution
-at the time of this writing.
+At the time of this writing, exactly one project-endorsed alternate session
+factory exists named :term:`pyramid_redis_sessions`. It can be downloaded from
+PyPI. It uses the Redis database as a backend. It is the recommended
+persistent session solution at the time of this writing.
.. index::
single: session factory (custom)