Skip to content

Commit 0fa33c7

Browse files
committed
handful of manual link fixes
1 parent 35b4d55 commit 0fa33c7

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/src/learn/your-first-component.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ We will add this new view into your [`urls.py`](https://docs.djangoproject.com/e
9595
=== "urls.py"
9696

9797
```python
98-
{% include "../../examples/python/example/urls.py" %}
98+
{% include "../../examples/python/first_urls.py" %}
9999
```
100100

101101
??? question "Which urls.py do I add my views to?"

docs/src/reference/hooks.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Query functions can be sync or async.
3535
=== "models.py"
3636

3737
```python
38-
{% include "../../examples/python/example/models.py" %}
38+
{% include "../../examples/python/todo_item_model.py" %}
3939
```
4040

4141
??? example "See Interface"
@@ -150,7 +150,7 @@ Query functions can be sync or async.
150150
=== "models.py"
151151

152152
```python
153-
{% include "../../examples/python/example/models.py" %}
153+
{% include "../../examples/python/todo_item_model.py" %}
154154
```
155155

156156
??? question "Why does the example query function return `#!python TodoItem.objects.all()`?"
@@ -178,7 +178,7 @@ Mutation functions can be sync or async.
178178
=== "models.py"
179179

180180
```python
181-
{% include "../../examples/python/example/models.py" %}
181+
{% include "../../examples/python/todo_item_model.py" %}
182182
```
183183

184184
??? example "See Interface"
@@ -246,7 +246,7 @@ Mutation functions can be sync or async.
246246
=== "models.py"
247247

248248
```python
249-
{% include "../../examples/python/example/models.py" %}
249+
{% include "../../examples/python/todo_item_model.py" %}
250250
```
251251

252252
??? question "Can `#!python use_mutation` trigger a refetch of `#!python use_query`?"
@@ -266,7 +266,7 @@ Mutation functions can be sync or async.
266266
=== "models.py"
267267

268268
```python
269-
{% include "../../examples/python/example/models.py" %}
269+
{% include "../../examples/python/todo_item_model.py" %}
270270
```
271271

272272
---

docs/src/reference/utils.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Since ReactPy is rendered within an `#!python asyncio` loop, this postprocessor
9595
=== "models.py"
9696

9797
```python
98-
{% include "../../examples/python/example/models.py" %}
98+
{% include "../../examples/python/todo_item_model.py" %}
9999
```
100100

101101
??? example "See Interface"

0 commit comments

Comments
 (0)