mirror of
				https://github.com/encode/django-rest-framework.git
				synced 2025-11-04 09:57:55 +03:00 
			
		
		
		
	Add missing commas in pagination response samples (#8185)
This commit is contained in:
		
							parent
							
								
									b3beb15b00
								
							
						
					
					
						commit
						f3bb5b9cdc
					
				| 
						 | 
				
			
			@ -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": [
 | 
			
		||||
| 
						 | 
				
			
			@ -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": [
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue
	
	Block a user