summaryrefslogtreecommitdiff
path: root/docs/narr
diff options
context:
space:
mode:
Diffstat (limited to 'docs/narr')
-rw-r--r--docs/narr/hooks.rst2
-rw-r--r--docs/narr/webob.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/narr/hooks.rst b/docs/narr/hooks.rst
index 5e67a81c7..0dac8d426 100644
--- a/docs/narr/hooks.rst
+++ b/docs/narr/hooks.rst
@@ -667,7 +667,7 @@ that implements the following interface:
will be a resource object representing the virtual root (or the
physical root if traversal was not performed), and
``virtual_root_path`` will be a sequence representing the
- virtual root path (a sequence of strings) or None if
+ virtual root path (a sequence of strings) or ``None`` if
traversal was not performed.
Extra keys for special purpose functionality can be added as
diff --git a/docs/narr/webob.rst b/docs/narr/webob.rst
index 72f2db42e..665bbddc9 100644
--- a/docs/narr/webob.rst
+++ b/docs/narr/webob.rst
@@ -382,7 +382,7 @@ A response object has three fundamental parts:
``response.app_iter``
An iterable (such as a list or generator) that will produce the content of
the response. This is also accessible as ``response.body`` (bytes),
- ``response.text`` (a string, informed by ``response.charset``), and
+ ``response.text`` (a Unicode string, informed by ``response.charset``), and
``response.body_file`` (a file-like object; writing to it appends to
``app_iter``).