Skip to content

Commit c2b5ee0

Browse files
author
jjjkkkjjj
committed
modified routing.rst (django#2110)
1 parent a303572 commit c2b5ee0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/topics/routing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Here's an example for nested routings. When you configure the routings in parent
112112
.. code-block:: python
113113
114114
urlpatterns = [
115-
path("app1/", include("src.app1.routings"), name="app1"),
115+
path("app1/", include("app1.routings"), name="app1"),
116116
]
117117
118118
and in child ``app1/routings.py``;
@@ -125,7 +125,7 @@ and in child ``app1/routings.py``;
125125
re_path(r"chats/(\d+)/$", test_app, name="chats"),
126126
]
127127
128-
you can establish the connection via the path such like ``/app1/chats/5/``.
128+
This would resolve to a path such as ``/app1/chats/5/``.
129129

130130
ChannelNameRouter
131131
-----------------

0 commit comments

Comments
 (0)