summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/glossary.rst2
-rw-r--r--docs/narr/hybrid.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/glossary.rst b/docs/glossary.rst
index 41453b836..319483466 100644
--- a/docs/glossary.rst
+++ b/docs/glossary.rst
@@ -254,7 +254,7 @@ Glossary
mappings. In terms of :mod:`repoze.bfg`, a Route can supplant
graph traversal when deciding which *view* should be called. See
:ref:`urldispatch_chapter` for more information about Routes integration
- in bfg.
+ in :mod:`repoze.bfg`.
Route
A single pattern matched by the :term:`Routes` subsystem, which
generally resolves to a :term:`root factory` (and then ultimately
diff --git a/docs/narr/hybrid.rst b/docs/narr/hybrid.rst
index 86ae11166..66c1b55fc 100644
--- a/docs/narr/hybrid.rst
+++ b/docs/narr/hybrid.rst
@@ -130,7 +130,7 @@ looks like so:
def __getitem__(self, name):
return self.subobjects[name]
- root = Traversable(None, None,
+ root = Traversable(
{'a':Traversable({'b':Traversable({'c':Traversable({})})})})
def root_factory(environ):