From 8783f5b45ce2e8784f64a1b223b71dfc2f387b96 Mon Sep 17 00:00:00 2001 From: Take Weiland Date: Tue, 17 Dec 2024 16:32:44 +0100 Subject: [PATCH] Fix typos in comment --- strawberry_django/fields/field.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strawberry_django/fields/field.py b/strawberry_django/fields/field.py index bd70120e..fc5715f7 100644 --- a/strawberry_django/fields/field.py +++ b/strawberry_django/fields/field.py @@ -290,7 +290,7 @@ def qs_hook(qs: models.QuerySet): # type: ignore def qs_hook(qs: models.QuerySet): qs = self.get_queryset(qs, info, **kwargs) # Don't use qs.get() if the queryset is optimized by prefetching. - # Calling first in that case would disregard the prefetched results, because first implicitly + # Calling get in that case would disregard the prefetched results, because get implicitly # adds a limit to the query if is_optimized_by_prefetching(qs): # mimic behavior of get()