From b4c21eeebb8fee4dd2ab52038ad97e3ba06286fe Mon Sep 17 00:00:00 2001 From: Arijit Basu Date: Tue, 19 Feb 2019 11:46:17 +0530 Subject: doc update: firstapp: routes to root https://docs.pylonsproject.org/projects/pyramid/en/latest/narr/firstapp.html#adding-configuration --- docs/narr/firstapp.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'docs') diff --git a/docs/narr/firstapp.rst b/docs/narr/firstapp.rst index 917482976..10fbc5bb4 100644 --- a/docs/narr/firstapp.rst +++ b/docs/narr/firstapp.rst @@ -170,8 +170,7 @@ Adding Configuration :lines: 12-13 The first line above calls the :meth:`pyramid.config.Configurator.add_route` -method, which registers a :term:`route` to match any URL path that begins with -``/hello/`` followed by a string. +method, which registers a :term:`route` to root (``/``) URL path. The second line registers the ``hello_world`` function as a :term:`view callable` and makes sure that it will be called when the ``hello`` route is -- cgit v1.2.3 From 05303500475186f5e8e70bb4be67dc202a0dd6f1 Mon Sep 17 00:00:00 2001 From: Arijit Basu Date: Tue, 19 Feb 2019 17:02:31 +0530 Subject: no change in case --- docs/narr/project.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/narr/project.rst b/docs/narr/project.rst index 14f0d083e..58bef5701 100644 --- a/docs/narr/project.rst +++ b/docs/narr/project.rst @@ -149,7 +149,7 @@ number of debugging settings. You can use this file to put your application into production. The ``myproject`` project directory contains an additional subdirectory named -``myproject`` (note the case difference) representing a Python :term:`package` +``myproject`` representing a Python :term:`package` which holds very simple :app:`Pyramid` sample code. This is where you'll edit your application's Python code and templates. -- cgit v1.2.3