Skip to content

Commit 85e57af

Browse files
committed
Merge pull request #4008 from minddust/hotfix/typo
Fix typo
2 parents e946a49 + 0056703 commit 85e57af

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/api-guide/pagination.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Or apply the style globally, using the `DEFAULT_PAGINATION_CLASS` settings key.
5454

5555
REST_FRAMEWORK = {
5656
'DEFAULT_PAGINATION_CLASS': 'apps.core.pagination.StandardResultsSetPagination'
57-
}
57+
}
5858

5959
---
6060

docs/topics/3.1-announcement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ When per-request internationalization is enabled, client requests will respect t
110110
"detail": "No se ha podido satisfacer la solicitud de cabecera de Accept."
111111
}
112112

113-
Note that the structure of the error responses is still the same. We still have a `details` key in the response. If needed you can modify this behavior too, by using a [custom exception handler][custom-exception-handler].
113+
Note that the structure of the error responses is still the same. We still have a `detail` key in the response. If needed you can modify this behavior too, by using a [custom exception handler][custom-exception-handler].
114114

115115
We include built-in translations both for standard exception cases, and for serializer validation errors.
116116

docs/topics/3.2-announcement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The following pagination view attributes and settings have been moved into attri
5454
* `view.max_paginate_by` - Use `paginator.max_page_size` instead.
5555
* `settings.PAGINATE_BY` - Use `paginator.page_size` instead.
5656
* `settings.PAGINATE_BY_PARAM` - Use `paginator.page_size_query_param` instead.
57-
* `settings.MAX_PAGINATE_BY` - Use `max_page_size` instead.
57+
* `settings.MAX_PAGINATE_BY` - Use `paginator.max_page_size` instead.
5858

5959
## Modifications to list behaviors
6060

0 commit comments

Comments
 (0)