Skip to content

Commit f3bb5b9

Browse files
authored
Add missing commas in pagination response samples (#8185)
1 parent b3beb15 commit f3bb5b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/api-guide/pagination.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ This pagination style accepts a single number page number in the request query p
7878

7979
HTTP 200 OK
8080
{
81-
"count": 1023
81+
"count": 1023,
8282
"next": "https://api.example.org/accounts/?page=5",
8383
"previous": "https://api.example.org/accounts/?page=3",
8484
"results": [
@@ -126,7 +126,7 @@ This pagination style mirrors the syntax used when looking up multiple database
126126

127127
HTTP 200 OK
128128
{
129-
"count": 1023
129+
"count": 1023,
130130
"next": "https://api.example.org/accounts/?limit=100&offset=500",
131131
"previous": "https://api.example.org/accounts/?limit=100&offset=300",
132132
"results": [

0 commit comments

Comments
 (0)