Skip to content

Commit 9763526

Browse files
authored
Update README.md
Corrected name of function being imported from 'url' to path under the blog.urls section
1 parent b361209 commit 9763526

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

en/django_urls/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ from django.urls import path
7676
from . import views
7777
```
7878

79-
Here we're importing Django's function `url` and all of our `views` from the `blog` application. (We don't have any yet, but we will get to that in a minute!)
79+
Here we're importing Django's function `path` and all of our `views` from the `blog` application. (We don't have any yet, but we will get to that in a minute!)
8080

8181
After that, we can add our first URL pattern:
8282

0 commit comments

Comments
 (0)