From f4fb6b813e8cdcfc8e7692e8e7f9f402e093dc4f Mon Sep 17 00:00:00 2001 From: Conor Holden Date: Fri, 30 Aug 2024 10:09:49 +0200 Subject: [PATCH] :pencil2:[#414] fix typo Co-authored-by: Steven Bal --- src/objects/api/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/objects/api/constants.py b/src/objects/api/constants.py index a85a012e..31f3bb1b 100644 --- a/src/objects/api/constants.py +++ b/src/objects/api/constants.py @@ -9,4 +9,4 @@ class Operators(models.TextChoices): lt = "lt", _("lower than") lte = "lte", _("lower than or equal to") icontains = "icontains", _("case-insensitive partial match") - in_list = "in", _("in a list of values seperated by `|`") + in_list = "in", _("in a list of values separated by `|`")