From c7d7de0800d2ad1ac9c965ad37c3db2f48cf24c7 Mon Sep 17 00:00:00 2001
From: autodeploy <benoit@startinblox.com>
Date: Fri, 12 Jul 2024 17:28:27 +0200
Subject: [PATCH] fix: prev

---
 djangoldp/filters.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/djangoldp/filters.py b/djangoldp/filters.py
index 3cf502d..0e19771 100644
--- a/djangoldp/filters.py
+++ b/djangoldp/filters.py
@@ -22,7 +22,7 @@ class OwnerFilterBackend(BaseFilterBackend):
 class PublicFilterBackend(BaseFilterBackend):
     """
     Public filter applied.
-    This class is on models which bears a is_public boolean field, to filter objects that are public
+    This class can be applied on models which bears a is_public boolean field, to filter objects that are public.
     """       
     def filter_queryset(self, request, queryset, view):
         public_field = queryset.model._meta.public_field
-- 
GitLab