mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Fixed typos of "select_related" in docs and tests.
This commit is contained in:
		
				
					committed by
					
						 Tim Graham
						Tim Graham
					
				
			
			
				
	
			
			
			
						parent
						
							79f27f2b61
						
					
				
				
					commit
					7d363ed432
				
			| @@ -787,8 +787,8 @@ You can use ``select_related()`` with any queryset of objects:: | ||||
| The order of ``filter()`` and ``select_related()`` chaining isn't important. | ||||
| These querysets are equivalent:: | ||||
|  | ||||
|     Entry.objects.filter(pub_date__gt=timezone.now()).selected_related('blog') | ||||
|     Entry.objects.selected_related('blog').filter(pub_date__gt=timezone.now()) | ||||
|     Entry.objects.filter(pub_date__gt=timezone.now()).select_related('blog') | ||||
|     Entry.objects.select_related('blog').filter(pub_date__gt=timezone.now()) | ||||
|  | ||||
| You can follow foreign keys in a similar way to querying them. If you have the | ||||
| following models:: | ||||
|   | ||||
		Reference in New Issue
	
	Block a user