Skip to content

Commit 702b867

Browse files
committed
fixed links
1 parent a6feaa0 commit 702b867

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/views/async-class-based-views/detail.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class MyDetailView(AsyncDetailView):
1414
1. `get_object()` method is async.
1515
2. `get_queryset()` method is async.
1616
3. `get()` method is async.
17-
4. `AsyncDetailView` inherits from [AsyncView](async-class-based-views.md#asyncview) so anything mentioned there also applies here.
17+
4. `AsyncDetailView` inherits from [AsyncView](base.md#asyncview) so anything mentioned there also applies here.
1818

1919

2020
## Base classes

docs/views/async-class-based-views/list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class MyListView(AsyncListView):
1616
3. `get_context_data()` method is async.
1717
4. `get()` method is async.
1818
5. [AsyncPaginator](../../core/async-paginator.md) is used for pagination instead of django's regular [Paginator](https://docs.djangoproject.com/en/5.1/ref/paginator/#django.core.paginator.Paginator).
19-
6. `AsyncListView` inherits from [AsyncView](async-class-based-views.md#asyncview) so anything mentioned there also applies here.
19+
6. `AsyncListView` inherits from [AsyncView](base.md#asyncview) so anything mentioned there also applies here.
2020

2121
## Base classes
2222
some of the base classes for `ListView` have been re-written as async:

0 commit comments

Comments
 (0)