From 4dc90a28f31c4a176071db38a2d1cf9566414601 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 +- src/objects/api/v1/openapi.yaml | 4 ++-- src/objects/api/v2/openapi.yaml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) 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 `|`") diff --git a/src/objects/api/v1/openapi.yaml b/src/objects/api/v1/openapi.yaml index 00b6cc04..22c70e7f 100644 --- a/src/objects/api/v1/openapi.yaml +++ b/src/objects/api/v1/openapi.yaml @@ -106,7 +106,7 @@ paths: * `lt` - lower than * `lte` - lower than or equal to * `icontains` - case-insensitive partial match - * `in` - in a list of values seperated by `|` + * `in` - in a list of values separated by `|` `value` may not contain double underscore or comma characters. `key` may not contain comma characters and includes double underscore only if it indicates nested attributes. @@ -538,7 +538,7 @@ paths: * `lt` - lower than * `lte` - lower than or equal to * `icontains` - case-insensitive partial match - * `in` - in a list of values seperated by `|` + * `in` - in a list of values separated by `|` `value` may not contain double underscore or comma characters. `key` may not contain comma characters and includes double underscore only if it indicates nested attributes. diff --git a/src/objects/api/v2/openapi.yaml b/src/objects/api/v2/openapi.yaml index e9585683..d37679d7 100644 --- a/src/objects/api/v2/openapi.yaml +++ b/src/objects/api/v2/openapi.yaml @@ -106,7 +106,7 @@ paths: * `lt` - lower than * `lte` - lower than or equal to * `icontains` - case-insensitive partial match - * `in` - in a list of values seperated by `|` + * `in` - in a list of values separated by `|` `value` may not contain double underscore or comma characters. `key` may not contain comma characters and includes double underscore only if it indicates nested attributes. @@ -588,7 +588,7 @@ paths: * `lt` - lower than * `lte` - lower than or equal to * `icontains` - case-insensitive partial match - * `in` - in a list of values seperated by `|` + * `in` - in a list of values separated by `|` `value` may not contain double underscore or comma characters. `key` may not contain comma characters and includes double underscore only if it indicates nested attributes.