summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/handlers.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/narr/handlers.rst b/docs/narr/handlers.rst
index 84bd0757b..2d9a6c23a 100644
--- a/docs/narr/handlers.rst
+++ b/docs/narr/handlers.rst
@@ -218,7 +218,7 @@ Example:
# in the config
config.add_handler('hello', '/hello/:action', handler=Hello)
-With this configuration, the url '/hello/home' will find a view configuration
+With this configuration, the url ``/hello/home`` will find a view configuration
that results in calling the ``show_template`` method, then rendering the
-template with ``home.mak``, and the url '/hello/about' will call the same
+template with ``home.mak``, and the url ``/hello/about`` will call the same
method and render the ``about.mak`` template.