Skip to content

Commit b209995

Browse files
committed
correct terminology
1 parent 4a4fa74 commit b209995

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,11 +194,11 @@ def your_view(request):
194194

195195
## `example_app/urls.py`
196196

197-
Include your template in the list of urlpatterns
197+
Include your view in the list of urlpatterns
198198

199199
```python
200200
from django.urls import path
201-
from .views import your_view # define this view like any other HTML template
201+
from .views import your_view # define this view like any other HTML template view
202202

203203
urlpatterns = [
204204
path("", your_view),

0 commit comments

Comments
 (0)