Skip to content

Commit

Permalink
✏️[#414] fix typo
Browse files Browse the repository at this point in the history
Co-authored-by: Steven Bal <[email protected]>
  • Loading branch information
Coperh and stevenbal committed Aug 30, 2024
1 parent 322a5cb commit 4dc90a2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/objects/api/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 `|`")
4 changes: 2 additions & 2 deletions src/objects/api/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions src/objects/api/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit 4dc90a2

Please sign in to comment.