From 8bdb12c1d3829f0d8d42068892f7e8322eaa9dab Mon Sep 17 00:00:00 2001 From: David Beitey Date: Wed, 3 Apr 2019 16:18:54 +1000 Subject: [PATCH] Fixed typo in django/db/models/query_utils.py comment. --- django/db/models/query_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/models/query_utils.py b/django/db/models/query_utils.py index f6bc0bd030..90289d0da2 100644 --- a/django/db/models/query_utils.py +++ b/django/db/models/query_utils.py @@ -283,7 +283,7 @@ def check_rel_lookup_compatibility(model, target_opts, field): # If the field is a primary key, then doing a query against the field's # model is ok, too. Consider the case: # class Restaurant(models.Model): - # place = OnetoOneField(Place, primary_key=True): + # place = OneToOneField(Place, primary_key=True): # Restaurant.objects.filter(pk__in=Restaurant.objects.all()). # If we didn't have the primary key check, then pk__in (== place__in) would # give Place's opts as the target opts, but Restaurant isn't compatible