diff --git a/docs/features/components.md b/docs/features/components.md index dc697162..fa6b45f0 100644 --- a/docs/features/components.md +++ b/docs/features/components.md @@ -109,7 +109,7 @@ def my_component(): @component def my_component(): return html.div( - html.script({"src": static("https://example.com/external-scripts.js")}), + html.script({"src": "https://example.com/external-scripts.js"}), html.button("My Button!"), ) ``` diff --git a/docs/features/orm.md b/docs/features/orm.md index 056db7f1..38454ca2 100644 --- a/docs/features/orm.md +++ b/docs/features/orm.md @@ -45,7 +45,7 @@ def simple_list(): This may be resolved in a future version of Django with a natively asynchronous ORM. -??? question "What is an ORM?" +??? question "What is an "ORM"?" A Python **Object Relational Mapper** is an API for your code to access a database. diff --git a/docs/getting-started/render-view.md b/docs/getting-started/render-view.md index deb6a14e..d264517b 100644 --- a/docs/getting-started/render-view.md +++ b/docs/getting-started/render-view.md @@ -36,4 +36,4 @@ Now, navigate to `http://127.0.0.1:8000/example/`. If you copy-pasted the compon Once you reach that point, we recommend creating an individual `urls.py` within each of your **Django apps**. - Then, within your **Django project's** `urls.py` you will use Django's [`include` function](https://docs.djangoproject.com/en/dev/ref/urls/) to link it all together. + Then, within your **Django project's** `urls.py` you will use Django's [`include` function](https://docs.djangoproject.com/en/dev/ref/urls/#include) to link it all together.