summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/glossary.rst2
-rw-r--r--docs/narr/hooks.rst2
-rw-r--r--docs/narr/webob.rst2
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/glossary.rst b/docs/glossary.rst
index 97806d958..e21ae2fdc 100644
--- a/docs/glossary.rst
+++ b/docs/glossary.rst
@@ -523,7 +523,7 @@ Glossary
from the :term:`physical root`. For example, the physical path of the
``abc`` subobject of the physical root object is ``/abc``. Physical paths
can also be specified as tuples where the first element is the empty
- string (representing the root), and every other element is a string,
+ string (representing the root), and every other element is a Unicode string,
e.g. ``('', 'abc')``. Physical paths are also sometimes called
"traversal paths".
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``).