Skip to content

Commit

Permalink
Add missing commas in pagination response samples (#8185)
Browse files Browse the repository at this point in the history
  • Loading branch information
abhineet97 committed Dec 13, 2021
1 parent b3beb15 commit f3bb5b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/api-guide/pagination.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ This pagination style accepts a single number page number in the request query p

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

HTTP 200 OK
{
"count": 1023
"count": 1023,
"next": "https://api.example.org/accounts/?limit=100&offset=500",
"previous": "https://api.example.org/accounts/?limit=100&offset=300",
"results": [
Expand Down

0 comments on commit f3bb5b9

Please sign in to comment.